OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | |
3 <head> | 2 <head> |
4 <style> | 3 <style> |
5 head { | 4 hr { display: table-cell; } |
6 display: table-caption; | |
7 height: 100px; | |
8 width: 100px; | |
9 background-color: red; | |
10 } | |
11 </style> | 5 </style> |
12 <script> | 6 <script> |
13 if (window.testRunner) | 7 if (window.testRunner) |
14 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
15 | 9 |
16 onload = function() { | 10 onload = function() { |
17 document.designMode = 'on'; | 11 document.designMode = 'on'; |
18 document.execCommand('SelectAll'); | 12 document.execCommand('SelectAll'); |
19 document.execCommand('Indent'); | 13 document.execCommand('Indent'); |
20 document.open(); | 14 document.body.textContent = 'PASS if Blink doesn\'t crash.'; |
21 document.write('PASS if Blink doesn\'t crash.'); | |
22 }; | 15 }; |
23 </script> | 16 </script> |
24 </head> | 17 </head> |
25 <body> | 18 <body> |
26 foo | 19 before<hr><hr>after |
27 </body> | 20 </body> |
28 </html> | 21 </html> |
OLD | NEW |