OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <head> | |
3 <style> | |
4 hr { display: table-cell; } | |
5 </style> | |
6 <script> | |
7 if (window.testRunner) | |
8 testRunner.dumpAsText(); | |
9 | |
10 onload = function() { | |
11 document.designMode = 'on'; | |
Yuta Kitamura
2014/05/27 07:41:27
nit: Please use 4-space indent.
yosin_UTC9
2014/05/27 09:30:06
Done.
| |
12 document.execCommand('SelectAll'); | |
13 document.execCommand('Indent'); | |
14 document.body.textContent = 'PASS if Blink doesn\'t crash.'; | |
15 }; | |
16 </script> | |
17 </head> | |
18 <body> | |
19 before<hr><hr>after | |
20 </body> | |
21 </html> | |
OLD | NEW |