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 | 7 |
8 onload = function() { | 8 onload = function() { |
9 document.execCommand('SelectAll'); | 9 document.execCommand('SelectAll'); |
10 document.execCommand('JustifyCenter'); | 10 document.execCommand('RemoveFormat'); |
11 document.body.textContent = 'PASS if Blink doesn\'t crash.'; | 11 document.body.textContent = 'PASS if Blink doesn\'t crash.'; |
12 }; | 12 }; |
13 </script> | 13 </script> |
14 </head> | 14 </head> |
15 <body contenteditable="true"> | 15 <body contenteditable="true"> |
16 <kbd>foo</kbd> | 16 <span contenteditable="false"></span><code></code><b><span></span>ab</b> |
17 <sup>bar<abbr contenteditable="false">baz</abbr></sup> | |
18 </body> | 17 </body> |
19 </html> | 18 </html> |
OLD | NEW |