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