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