Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / balance-trailing-border-after-break.html
blob1f815e9afc40294470e788bb4c476c35e81c29f7
1 <!DOCTYPE html>
2 <script src="../../resources/js-test.js"></script>
3 <script>
4 description("Tests that the bottom border at a column boundary in a block that lives in multiple columns is recorded properly for balancing");
5 </script>
6 <p>There should be no space between the short black line and the long gray one.</p>
7 <div id="mc" style="-webkit-columns:3; columns:3; line-height:21px; orphans:1; widows:1; border-bottom:3px solid gray;">
8 <div style="height:9px;"></div>
9 <div style="border-bottom:3px solid black;">
10 <br><br><br><br><br><br><br><br>
11 </div>
12 </div>
13 <script>
14 shouldBe("mc.offsetHeight", "69");
15 </script>