Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <p>crbug.com/588178: PASS if no crash or assertion failure.</p> | |
| 3 <div id="container"> | |
| 4 <div></div> | |
| 5 <div id="block2"> | |
| 6 <div id="removeMe" style="float:left; width:300px; height:300px;"></div> | |
| 7 <textarea style="display:block;"></textarea> | |
| 8 </div> | |
| 9 </div> | |
| 10 <script> | |
| 11 if (window.testRunner) | |
| 12 testRunner.dumpAsText(); | |
| 13 document.body.offsetTop; | |
| 14 document.getElementById("container").style.columns = "2"; | |
| 15 document.getElementById("block2").style.webkitWritingMode = "vertical-lr"; | |
| 16 document.getElementById("removeMe").style.display = "none"; | |
| 17 </script> | |
| OLD | NEW |