OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../../resources/js-test.js"></script> |
| 3 <script> |
| 4 if (window.internals) |
| 5 internals.settings.setRegionBasedColumnsEnabled(true); |
| 6 </script> |
| 7 <p>The 5 lines should all be in the second column.</p> |
| 8 <div id="mc" style="-webkit-columns:3; columns:3; -webkit-column-rule:solid; lin
e-height:50px; orphans:1; widows:5;"> |
| 9 <span id="inFirstColumn"><br></span> |
| 10 <span id="first">line<br></span> |
| 11 line<br> |
| 12 line<br> |
| 13 line<br> |
| 14 <span id="last">line<br></span> |
| 15 </div> |
| 16 <script> |
| 17 shouldBe("mc.offsetHeight", "250"); |
| 18 shouldBe("first.offsetTop", "inFirstColumn.offsetTop"); |
| 19 shouldBeGreaterThan("first.offsetLeft", "inFirstColumn.offsetLeft"); |
| 20 shouldBe("last.offsetLeft", "first.offsetLeft"); |
| 21 </script> |
OLD | NEW |