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