| 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';
|
|
|
|
|