| OLD | NEW |
| (Empty) |
| 1 <!-- This test passes if there is no crash. --> | |
| 2 <script> | |
| 3 function go() { | |
| 4 | |
| 5 if (window.testRunner) | |
| 6 testRunner.dumpAsText(); | |
| 7 | |
| 8 q = document.getElementById('root').contentDocument; | |
| 9 q.firstChild.setAttribute('style', 'content:counter(item)'); | |
| 10 | |
| 11 document.designMode = 'on'; | |
| 12 q.execCommand('selectAll'); | |
| 13 q.execCommand('insertImage'); | |
| 14 q.getElementById('x').appendChild( q.firstChild.cloneNode(1) ); | |
| 15 q.execCommand('undo'); | |
| 16 } | |
| 17 </script> | |
| 18 <object data="resources/bug78838.svg" id="root" onload="go()"/></object> | |
| 19 <p>PASSED</p> | |
| OLD | NEW |