OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 div { | 4 div { |
5 box-orient: vertical; | 5 box-orient: vertical; |
6 -moz-box-orient: vertical; | 6 -moz-box-orient: vertical; |
7 -webkit-box-orient: vertical; | 7 -webkit-box-orient: vertical; |
8 display: -moz-box; | 8 display: -moz-box; |
9 display: -webkit-box; | 9 display: -webkit-box; |
10 display: box; | 10 display: box; |
(...skipping 24 matching lines...) Expand all Loading... |
35 </head> | 35 </head> |
36 <body> | 36 <body> |
37 <!-- You should see a 100x100 green square below. If you see any red, the test
has failed. This test is checking | 37 <!-- You should see a 100x100 green square below. If you see any red, the test
has failed. This test is checking |
38 for visibility:collapse support with vertical orientation. This test is expected
to fail but not crash! --> | 38 for visibility:collapse support with vertical orientation. This test is expected
to fail but not crash! --> |
39 <div> | 39 <div> |
40 <div class="first"></div> | 40 <div class="first"></div> |
41 <div class="second"></div> | 41 <div class="second"></div> |
42 </div> | 42 </div> |
43 </body> | 43 </body> |
44 </html> | 44 </html> |
OLD | NEW |