OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 div.columns { | 4 div.columns { |
5 width: 200px; | 5 width: 200px; |
6 -webkit-columns: 2; | 6 -webkit-columns: 2; |
7 -webkit-column-gap: 0; | 7 -webkit-column-gap: 0; |
8 columns: 2; | 8 columns: 2; |
9 column-gap: 0; | 9 column-gap: 0; |
10 column-fill: auto; | 10 column-fill: auto; |
11 outline: 1px solid blue; | 11 outline: 1px solid blue; |
12 font-family: Ahem; | 12 font-family: Ahem; |
13 font-size: 10px; | 13 font-size: 10px; |
14 margin: 5px; | 14 margin: 5px; |
15 overflow: hidden; | 15 overflow: hidden; |
16 } | 16 } |
17 | 17 |
18 div.float { | 18 div.float { |
19 float: left; | 19 float: left; |
20 width: 50px; | 20 width: 51px; |
21 margin-top: 5px; | 21 margin-top: 5px; |
22 color: silver; | 22 color: silver; |
23 } | 23 } |
24 </style> | 24 </style> |
25 </head> | 25 </head> |
26 <body> | 26 <body> |
27 <div id="tests"> | 27 <div id="tests"> |
28 <div class="columns" style="height: 80px;"> | 28 <div class="columns" style="height: 80px;"> |
29 one line two lines three lines | 29 one line two lines three lines |
30 <div class="float" id="f1"> | 30 <div class="float" id="f1"> |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 failures++ | 98 failures++ |
99 } | 99 } |
100 | 100 |
101 if (window.testRunner) { | 101 if (window.testRunner) { |
102 testRunner.dumpAsText(); | 102 testRunner.dumpAsText(); |
103 document.getElementById("tests").style.display = "none"; | 103 document.getElementById("tests").style.display = "none"; |
104 } | 104 } |
105 | 105 |
106 document.getElementById("result").innerText = failures ? "FAIL: " + failures
+ " cases failed" : "PASS"; | 106 document.getElementById("result").innerText = failures ? "FAIL: " + failures
+ " cases failed" : "PASS"; |
107 </script> | 107 </script> |
OLD | NEW |