| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <body> | 2 <body> |
| 3 Test passes if it does not crash. | 3 Test passes if it does not crash. |
| 4 <div id="test" contenteditable="true"> | 4 <div id="test" contenteditable="true"> |
| 5 <ins><math>ABCD</math></ins> | 5 <ins><math>ABCD</math></ins> |
| 6 </div> | 6 </div> |
| 7 <script> | 7 <script> |
| 8 if (window.testRunner) | 8 if (window.testRunner) |
| 9 testRunner.dumpAsText(); | 9 testRunner.dumpAsText(); |
| 10 | 10 |
| 11 var test = document.getElementById("test"); | 11 var test = document.getElementById("test"); |
| 12 test.focus(); | 12 test.focus(); |
| 13 document.execCommand("SelectAll"); | 13 document.execCommand("SelectAll"); |
| 14 document.execCommand("RemoveFormat"); | 14 document.execCommand("RemoveFormat"); |
| 15 document.body.removeChild(test); | 15 document.body.removeChild(test); |
| 16 </script> | 16 </script> |
| 17 </body> | 17 </body> |
| 18 </html> | 18 </html> |
| OLD | NEW |