Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / vertical-lr / balancing / balance-short-trailing-empty-block.html
blob9b7e80a005be93d2e7184175fb439ef07482a6c8
1 <!DOCTYPE html>
2 <script src="../../../../resources/js-test.js"></script>
3 <p>Both words below should be in the the right column.</p>
4 <div id="console"></div>
5 <div id="mc" style="-webkit-writing-mode:vertical-lr; -webkit-columns:2; columns:2; orphans:1; widows:1; -webkit-column-rule:1px solid; column-rule:1px solid; background:olive;">
6 <div style="width:120px;"></div>
7 <div style="line-height:80px;">second<br>column</div>
8 <div style="width:30px;"></div>
9 </div>
10 <script>
11 description("Tests if a block crossing a column boundary is recorded properly for balancing");
12 shouldBe("mc.offsetWidth", "190");
13 </script>