OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <script src="../../resources/js-test.js"></script> | |
3 <script> | |
4 description("Tests that the bottom border at a column boundary is recorded p roperly for balancing"); | |
5 if (window.internals) | |
6 internals.settings.setRegionBasedColumnsEnabled(true); | |
7 </script> | |
8 <p>Both words below should be in the the right column.</p> | |
9 <div id="mc" style="-webkit-columns:2; columns:2; orphans:1; widows:1; -webkit-c olumn-rule:1px solid; column-rule:1px solid; background:olive;"> | |
10 <div style="height:110px"></div> | |
11 <div style="border:2px solid black; width:375px;"> | |
12 <div style="margin:0 10px; border:2px solid blue;"> | |
13 <span style="line-height:80px;">right<br>column</span> | |
14 </div> | |
15 </div> | |
16 </div> | |
17 <script> | |
18 shouldBe("mc.offsetHeight", "168"); | |
19 </script> | |
OLD | NEW |