Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / float-big-line-expected.html
blob9d09296fce9b53a4d3f06c3fb718833576eea1f3
1 <!DOCTYPE html>
2 <style>
3 .columns {
4 border: 2px solid black;
5 height: 400px;
6 line-height: 20px;
8 .column1, .column2 {
9 float: left;
10 width: 50%;
12 .big {
13 font-size: 128px;
14 line-height: 154px;
16 .left { float: left; }
17 </style>
18 <p>There should be a big T in the second column.</p>
19 <div class="columns">
20 <div class="column1">
21 This is some text.<br>
22 This is some text.<br>
23 This is some text.<br>
24 This is some text.<br>
25 This is some text.<br>
26 This is some text.<br>
27 This is some text.<br>
28 This is some text.<br>
29 This is some text.<br>
30 This is some text.<br>
31 This is some text.<br>
32 This is some text.<br>
33 This is some text.<br>
34 This is some text.<br>
35 This is some text.<br>
36 </div>
37 <div class="column2">
38 <span class="big left">T</span>his is some text.<br>
39 This is some text.<br>
40 This is some text.<br>
41 This is some text.<br>
42 This is some text.<br>
43 This is some text.<br>
44 This is some text.<br>
45 This is some text.<br>
46 This is some text.<br>
47 This is some text.<br>
48 This is some text.<br>
49 This is some text.<br>
50 This is some text.<br>
51 </div>
52 </div>