OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="../../resources/js-test.js"></script> | 2 <script src="../../resources/js-test.js"></script> |
3 <script> | |
4 if (window.internals) | |
5 internals.settings.setRegionBasedColumnsEnabled(true); | |
6 </script> | |
7 <p>Both words below should be in the the right column.</p> | 3 <p>Both words below should be in the the right column.</p> |
8 <div id="console"></div> | 4 <div id="console"></div> |
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;"> | 5 <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:120px;"></div> | 6 <div style="height:120px;"></div> |
11 <div style="line-height:80px;">right<br>column</div> | 7 <div style="line-height:80px;">right<br>column</div> |
12 <div style="height:30px;"></div> | 8 <div style="height:30px;"></div> |
13 </div> | 9 </div> |
14 <script> | 10 <script> |
15 description("Tests that a block a column boundary is recorded properly for b
alancing"); | 11 description("Tests that a block a column boundary is recorded properly for b
alancing"); |
16 shouldBe("mc.offsetHeight", "190"); | 12 shouldBe("mc.offsetHeight", "190"); |
17 </script> | 13 </script> |
OLD | NEW |