OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> |
2 <head> | 3 <head> |
3 <script> | 4 <script> |
4 if (window.testRunner) | 5 if (window.testRunner) |
5 testRunner.dumpAsText(); | 6 testRunner.dumpAsText(); |
6 | 7 |
7 onload = function() { | 8 onload = function() { |
8 getSelection().collapse(document.body, 0); | |
9 document.body.parentNode.removeChild(document.body); | |
10 document.designMode = 'on'; | 9 document.designMode = 'on'; |
11 document.execCommand("InsertText", false, '\t'); | 10 document.execCommand('SelectAll'); |
| 11 document.execCommand('FormatBlock', false, '<pre>'); |
12 document.documentElement.textContent = 'PASS if Blink doesn\'t crash.'; | 12 document.documentElement.textContent = 'PASS if Blink doesn\'t crash.'; |
13 } | 13 }; |
14 </script> | 14 </script> |
15 </head> | 15 </head> |
16 <body> | 16 <body> |
| 17 ab<embed contenteditable="false"></embed>xyz |
17 </body> | 18 </body> |
18 </html> | 19 </html> |
OLD | NEW |