OLD | NEW |
1 <html style="-webkit-writing-mode:horizontal-tb;"> | 1 <html style="-webkit-writing-mode:horizontal-tb;"> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 div.columns { | 4 div.columns { |
5 height: 200px; | 5 height: 200px; |
6 -webkit-columns: 2; | 6 -webkit-columns: 2; |
7 -webkit-column-gap: 0; | 7 -webkit-column-gap: 0; |
| 8 columns: 2; |
| 9 column-gap: 0; |
| 10 column-fill: auto; |
8 outline: 1px solid blue; | 11 outline: 1px solid blue; |
9 font-family: ahem; | 12 font-family: ahem; |
10 font-size: 10px; | 13 font-size: 10px; |
11 margin: 5px; | 14 margin: 5px; |
12 overflow: hidden; | 15 overflow: hidden; |
13 } | 16 } |
14 | 17 |
15 div.float { | 18 div.float { |
16 float: left; | 19 float: left; |
17 height: 50px; | 20 height: 50px; |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 } | 100 } |
98 } | 101 } |
99 | 102 |
100 if (window.testRunner) { | 103 if (window.testRunner) { |
101 testRunner.dumpAsText(); | 104 testRunner.dumpAsText(); |
102 document.getElementById("tests").style.display = "none"; | 105 document.getElementById("tests").style.display = "none"; |
103 } | 106 } |
104 | 107 |
105 document.getElementById("result").innerText = failures ? "FAIL: " + failures
+ " cases failed" : "PASS"; | 108 document.getElementById("result").innerText = failures ? "FAIL: " + failures
+ " cases failed" : "PASS"; |
106 </script> | 109 </script> |
OLD | NEW |