OLD | NEW |
| (Empty) |
1 <!doctype html> | |
2 <html style="font: 16px/1.25 monospace;"> | |
3 <head> | |
4 <style> | |
5 .region { | |
6 width: 100px; | |
7 height: 100px; | |
8 } | |
9 | |
10 #region1 { | |
11 border: 5px solid green; | |
12 height: 150px; | |
13 } | |
14 | |
15 #region2 { | |
16 border: 5px solid blue; | |
17 height: 200px; | |
18 } | |
19 | |
20 #self_col { | |
21 margin-top: 0px; | |
22 margin-bottom: 0px; | |
23 float: left; | |
24 height: 30px; | |
25 border: thin solid black; | |
26 } | |
27 | |
28 #self_col_p { | |
29 margin-top: 30px; | |
30 } | |
31 | |
32 #clear { | |
33 margin-top: 50px; | |
34 } | |
35 </style> | |
36 </head> | |
37 <body> | |
38 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=122450">Bug
122450</a>. The test passes if the first three lines are in the green box and t
he last four lines in the blue box.</p> | |
39 <div id="container"> | |
40 <div class="region" id="region1"> | |
41 <div id="self_col_p"> | |
42 <div id="self_col"></div> | |
43 <div id="clear"> | |
44 Linetext1 | |
45 Linetext2 | |
46 Linetext3 | |
47 </div> | |
48 </div> | |
49 </div> | |
50 <div class="region" id="region2"> | |
51 Linetext4 | |
52 Linetext5 | |
53 Linetext6 | |
54 Linetext7 | |
55 </div> | |
56 </div> | |
57 </body> | |
58 </html> | |
OLD | NEW |