OLD | NEW |
---|---|
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 div | 4 div |
5 { | 5 { |
6 -webkit-column-span: all; | 6 -webkit-column-span: all; |
7 -webkit-columns: 2; | 7 -webkit-columns: 2; |
8 display: table-cell; | 8 display: table-cell; |
9 } | 9 } |
10 div:last-of-type | 10 div:last-of-type |
11 { | 11 { |
12 display: table-caption; | 12 display: table-caption; |
13 } | 13 } |
14 </style> | 14 </style> |
15 </head> | 15 </head> |
16 <body> | 16 <body> |
17 <div> | 17 <div> |
18 <div></div> | 18 <div></div> |
19 </div> | 19 </div> |
20 PASS | 20 PASS |
21 <script> | 21 <script> |
22 if (window.layoutTestController) | 22 if (window.layoutTestController) |
23 layoutTestController.dumpAsText(); | 23 layoutTestController.dumpAsText(); |
24 </script> | 24 </script> |
25 </body> | 25 </body> |
26 </html> | 26 </html> |
OLD | NEW |