Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / balance-trailing-border.html
blobabbacb8c1df69d44a7699f2f20bf110b7f333084
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-columns:2; columns:2; orphans:1; widows:1; -webkit-column-rule:1px solid; column-rule:1px solid; background:olive;">
6 <div style="height:110px"></div>
7 <div style="border:2px solid black; width:375px;">
8 <div style="margin:0 10px; border:2px solid blue;">
9 <span style="line-height:80px;">right<br>column</span>
10 </div>
11 </div>
12 </div>
13 <script>
14 description("Tests that the bottom border at a column boundary is recorded properly for balancing");
15 shouldBe("mc.offsetHeight", "168");
16 </script>