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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/html/dom/original-harness.js

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 var ReflectionHarness = {}; 1 var ReflectionHarness = {};
2 2
3 // @private 3 // @private
4 ReflectionHarness.passed = document.getElementById("passed"); 4 ReflectionHarness.passed = document.getElementById("passed");
5 ReflectionHarness.failed = document.getElementById("failed"); 5 ReflectionHarness.failed = document.getElementById("failed");
6 6
7 /** 7 /**
8 * Should we report a failure for unexpected exceptions, or just rethrow them? 8 * Should we report a failure for unexpected exceptions, or just rethrow them?
9 * The original test framework reports an exception, but testharness.js doesn't 9 * The original test framework reports an exception, but testharness.js doesn't
10 * want that. 10 * want that.
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 continue; 323 continue;
324 } 324 }
325 325
326 if (key in elements) { 326 if (key in elements) {
327 elements[key] = elements[key].concat(src[key]); 327 elements[key] = elements[key].concat(src[key]);
328 } else { 328 } else {
329 elements[key] = src[key]; 329 elements[key] = src[key];
330 } 330 }
331 } 331 }
332 } 332 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698