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

Unified Diff: third_party/WebKit/LayoutTests/resources/testharnessreport.js

Issue 2714863003: Replace remaining references to imported/wpt with external/wpt (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/ContainerNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/resources/testharnessreport.js
diff --git a/third_party/WebKit/LayoutTests/resources/testharnessreport.js b/third_party/WebKit/LayoutTests/resources/testharnessreport.js
index c3d3ff941a35b01d183504af7ee8036ec0e77929..96f2dd203431960099f57c4f9cf6e2c6c7008259 100644
--- a/third_party/WebKit/LayoutTests/resources/testharnessreport.js
+++ b/third_party/WebKit/LayoutTests/resources/testharnessreport.js
@@ -80,7 +80,7 @@
var path = location.pathname;
if (location.hostname == 'web-platform.test' && path.endsWith('-manual.html'))
return true;
- return /\/imported\/wpt\/.*-manual\.html$/.test(path);
+ return /\/external\/wpt\/.*-manual\.html$/.test(path);
}
// Returns a directory part relative to WPT root and a basename part of the
@@ -93,7 +93,7 @@
var matches = path.match(/^(\/.*)\.html$/);
return matches ? matches[1] : null;
}
- var matches = path.match(/imported\/wpt(\/.*)\.html$/);
+ var matches = path.match(/external\/wpt(\/.*)\.html$/);
return matches ? matches[1] : null;
}
@@ -101,7 +101,7 @@
var pathAndBase = pathAndBaseNameInWPT();
if (!pathAndBase)
return;
- var automationPath = location.pathname.replace(/\/imported\/wpt\/.*$/, '/external/wpt_automation');
+ var automationPath = location.pathname.replace(/\/external\/wpt\/.*$/, '/external/wpt_automation');
if (location.hostname == 'web-platform.test')
automationPath = '/wpt_automation';
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/ContainerNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698