OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <h3>Changing the contents of a table cell, increasing column height</h3> | 4 <h3>Changing the contents of a table cell, increasing column height</h3> |
5 | 5 |
6 <p>You should see the text "first column" once in the first column, and
the text "second | 6 <p>You should see the text "first column" once in the first column, and
the text "second |
7 column" twice in the second column.</p> | 7 column" twice in the second column.</p> |
8 <div style="-webkit-columns:2; columns:2; x-webkit-column-rule:1px solid
; xcolumn-rule:1px solid; orphans:1; widows:1; xbackground:yellow;"> <!-- FIXME:
should ideally paint background and column rules here, to measure the column he
ight, but the balancing machinery in the old multicol implementation doesn't do
it properly. See crbug.com/352052 --> | 8 <div style="-webkit-columns:2; columns:2; orphans:1; widows:1;"> |
9 first column<br> | 9 first column<br> |
10 <br> | 10 <br> |
11 second column<br> | 11 second column<br> |
12 second column | 12 second column |
13 </div> | 13 </div> |
14 </body> | 14 </body> |
15 </html> | 15 </html> |
OLD | NEW |