| <script src="../editing.js"></script> |
| document.execCommand('SelectAll') |
| span = document.getElementsByTagName('span')[0]; |
| span.contentEditable = 'true'; |
| span.textContent = 'bar'; |
| document.execCommand('InsertText', false, '1'); |
| document.body.textContent = "PASS. WebKit didn't crash."; |
| * { visibility:visible; } |
| .inline { display:inline; } |
| * :only-child { visibility:hidden; } |
| <body onload=editingTest()> |
| <tr><td><span><table></table><span></span></span></td></tr> |
| <tr><td><td style="height: 100px;" class="inline">foo</td></tr> |