Impossible to insert content before or after a table

Stanimir Stamenkov <[email protected]> Mon, 10 Oct 2011 00:18:07 +0300
Newsgroups gmane.comp.mozilla.devel.editor
Message-ID <[email protected]>
Given the following example (see complete attached):

<div contenteditable="true">
   <table border="1">
   <tbody>
     <tr>
       <th>A</th><th>B</th><th>C</th>
     </tr>
     <tr>
       <td>1.1</td><td>1.2</td><td>1.3</td>
     </tr>
     <tr>
       <td>2.1</td><td>2.2</td><td>2.3</td>
     </tr>
   </tbody>
   </table>
</div>

It doesn't seem possible to insert content before or after the 
table, using Mozilla.  Trying IE, Opera, Chrome and Safari - all 
seem to allow moving the caret before or after the table and insert 
content outside of the table.  Is there a secret key combination to 
break out of the table in Mozilla?

-- 
Stanimir

_______________________________________________
dev-tech-editor mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-tech-editor
edit-test.html (text/html, 394 B)
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Edit Test</title>
</head>
<body>

<div contenteditable="true">
  <table border="1">
  <tbody>
    <tr>
      <th>A</th><th>B</th><th>C</th>
    </tr>
    <tr>
      <td>1.1</td><td>1.2</td><td>1.3</td>
    </tr>
    <tr>
      <td>2.1</td><td>2.2</td><td>2.3</td>
    </tr>
  </tbody>
  </table>
</div>

</body>
</html>