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