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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/html/syntax/parsing/test.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 namespaces = { 1 var namespaces = {
2 "html":"http://www.w3.org/1999/xhtml", 2 "html":"http://www.w3.org/1999/xhtml",
3 "mathml":"http://www.w3.org/1998/Math/MathML", 3 "mathml":"http://www.w3.org/1998/Math/MathML",
4 "svg":"http://www.w3.org/2000/svg", 4 "svg":"http://www.w3.org/2000/svg",
5 "xlink":"http://www.w3.org/1999/xlink", 5 "xlink":"http://www.w3.org/1999/xlink",
6 "xml":"http://www.w3.org/XML/1998/namespace", 6 "xml":"http://www.w3.org/XML/1998/namespace",
7 "xmlns":"http://www.w3.org/2000/xmlns/" 7 "xmlns":"http://www.w3.org/2000/xmlns/"
8 }; 8 };
9 9
10 var prefixes = {}; 10 var prefixes = {};
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 322
323 onload = function() { 323 onload = function() {
324 Array.prototype.forEach.call(document.getElementsByTagName("iframe"), 324 Array.prototype.forEach.call(document.getElementsByTagName("iframe"),
325 function(iframe) { 325 function(iframe) {
326 if (tests_started<order.length) { 326 if (tests_started<order.length) {
327 test_next(iframe); 327 test_next(iframe);
328 } 328 }
329 }); 329 });
330 }; 330 };
331 } 331 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698