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