OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <body> |
| 4 <input> |
| 5 <hr> |
| 6 > |
| 7 <script> |
| 8 if (window.testRunner) |
| 9 testRunner.dumpAsText(); |
| 10 |
| 11 document.designMode = 'on'; |
| 12 document.execCommand('SelectAll'); |
| 13 document.execCommand('Strikethrough'); |
| 14 document.execCommand('InsertOrderedList'); |
| 15 window.getSelection().deleteFromDocument(); |
| 16 document.execCommand('SelectAll'); |
| 17 document.execCommand('Strikethrough'); |
| 18 document.write('The test passes if the page does not crash.'); |
| 19 </script> |
| 20 </body> |
| 21 </html> |
OLD | NEW |