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