Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <body> | |
| 4 <input> | |
| 5 <hr> | |
| 6 > | |
|
arpitab_
2014/02/28 14:02:55
Required for reproducing the crash.
| |
| 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 |