Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(209)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/style-enumerate-properties.html

Issue 1710003002: Unprefix multicol properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase master Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698