| 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 -webkit-columns: 2; | 4 -webkit-columns: 2; |
| 5 -webkit-column-gap: 0; | 5 -webkit-column-gap: 0; |
| 6 columns: 2; | 6 columns: 2; |
| 7 column-gap: 0; | 7 column-gap: 0; |
| 8 column-fill: auto; | 8 column-fill: auto; |
| 9 height: 200px; | 9 height: 200px; |
| 10 outline: 1px solid blue; | 10 outline: 1px solid blue; |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 } | 97 } |
| 98 } | 98 } |
| 99 | 99 |
| 100 if (window.testRunner) { | 100 if (window.testRunner) { |
| 101 testRunner.dumpAsText(); | 101 testRunner.dumpAsText(); |
| 102 document.getElementById("tests").style.display = "none"; | 102 document.getElementById("tests").style.display = "none"; |
| 103 } | 103 } |
| 104 | 104 |
| 105 document.getElementById("result").innerText = failures ? "FAIL: " + failures
+ " cases failed" : "PASS"; | 105 document.getElementById("result").innerText = failures ? "FAIL: " + failures
+ " cases failed" : "PASS"; |
| 106 </script> | 106 </script> |
| OLD | NEW |