OLD | NEW |
---|---|
1 <head> | 1 <head> |
2 <script src="../../resources/js-test.js"></script> | 2 <script src="../../resources/js-test.js"></script> |
3 <script> | 3 <script> |
4 if (window.testRunner) | 4 if (window.testRunner) |
5 testRunner.dumpAsText(); | 5 testRunner.dumpAsText(); |
6 | 6 |
7 | 7 |
8 </script> | 8 </script> |
9 </head> | 9 </head> |
10 <body style="text-decoration: underline; border-top-color: green"> | 10 <body style="text-decoration: underline; border-top-color: green"> |
(...skipping 24 matching lines...) Expand all Loading... | |
35 if (p === "alignmentBaseline") | 35 if (p === "alignmentBaseline") |
36 started = true; | 36 started = true; |
37 if (!started) | 37 if (!started) |
38 continue; | 38 continue; |
39 if (p === "filter") | 39 if (p === "filter") |
40 seenFilter = true; | 40 seenFilter = true; |
41 if (previous && previous >= p) { | 41 if (previous && previous >= p) { |
42 testFailed("Invalid CSS-mapped property order: '" + p + "' after '" + previous + "'"); | 42 testFailed("Invalid CSS-mapped property order: '" + p + "' after '" + previous + "'"); |
43 break; | 43 break; |
44 } | 44 } |
45 if (++cssPropertyCount <= 100) | 45 if (++cssPropertyCount <= 150) |
leviw_travelin_and_unemployed
2016/02/18 19:32:57
Where'd this number come from?
mstensho (USE GERRIT)
2016/02/18 19:59:31
Suddenly, there are more than 100 properties betwe
| |
46 previous = p; | 46 previous = p; |
47 else { | 47 else { |
48 if (seenFilter) | 48 if (seenFilter) |
49 testPassed("The CSS property order is correct"); | 49 testPassed("The CSS property order is correct"); |
50 else | 50 else |
51 testFailed("The 'filter' property was not enumerated"); | 51 testFailed("The 'filter' property was not enumerated"); |
52 break; | 52 break; |
53 } | 53 } |
54 } | 54 } |
55 </script> | 55 </script> |
56 </body> | 56 </body> |
OLD | NEW |