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