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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/support/check-layout-th.js

Issue 1548053002: Import csswg-test@c8f03606f92d6f386f99dae6d11eed99114a9ea2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 (function() { 1 (function() {
2 // Test is initiated from body.onload, so explicit done() call is required. 2 // Test is initiated from body.onload, so explicit done() call is required.
3 setup({ explicit_done: true }); 3 setup({ explicit_done: true });
4 4
5 function checkSubtreeExpectedValues(t, parent, prefix) 5 function checkSubtreeExpectedValues(t, parent, prefix)
6 { 6 {
7 var checkedLayout = checkExpectedValues(t, parent, prefix); 7 var checkedLayout = checkExpectedValues(t, parent, prefix);
8 Array.prototype.forEach.call(parent.childNodes, function(node) { 8 Array.prototype.forEach.call(parent.childNodes, function(node) {
9 checkedLayout |= checkSubtreeExpectedValues(t, node, prefix); 9 checkedLayout |= checkSubtreeExpectedValues(t, node, prefix);
10 }); 10 });
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 } 181 }
182 }, selectorList + ' ' + String(++testNumber)); 182 }, selectorList + ' ' + String(++testNumber));
183 }); 183 });
184 if (!checkedLayout) { 184 if (!checkedLayout) {
185 console.error("No valid data-* attributes found in selector list : " + s electorList); 185 console.error("No valid data-* attributes found in selector list : " + s electorList);
186 } 186 }
187 done(); 187 done();
188 }; 188 };
189 189
190 })(); 190 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698