OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <style> |
| 5 * { display: -webkit-inline-box; } |
| 6 .CLASS11 { float: right; } |
| 7 </style> |
| 8 <script> |
| 9 if (window.testRunner) |
| 10 testRunner.dumpAsText(); |
| 11 |
| 12 window.onload = function () { |
| 13 document.designMode = 'on'; |
| 14 document.execCommand('SelectAll', false) |
| 15 document.execCommand('Indent', false, false); |
| 16 document.execCommand('Indent', false, false); |
| 17 document.documentElement.innerHTML = 'PASS. Blink didn\'t crash.'; |
| 18 }; |
| 19 </script> |
| 20 </head> |
| 21 <body>aaa<div class="CLASS11"></div><div>bbb</div></body> |
| 22 </html> |
OLD | NEW |