| Index: third_party/WebKit/LayoutTests/fast/harness/results.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/harness/results.html b/third_party/WebKit/LayoutTests/fast/harness/results.html
|
| index 14c072d2f16376a634b77cde5b3a2356d215fe07..b42f5cd6ca47783b3ed7810554097346c61f5699 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/harness/results.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/harness/results.html
|
| @@ -432,11 +432,12 @@ function testLinkTarget(test)
|
| {
|
| var target;
|
| if (shouldUseTracLinks()) {
|
| - var revision = globalState().results.revision;
|
| - target = 'http://src.chromium.org/viewvc/blink/trunk/LayoutTests/' + test;
|
| + var revision = globalState().results.chromium_revision;
|
| if (revision)
|
| - target += '?pathrev=' + revision;
|
| - target += '#l1';
|
| + target = 'https://crrev.com/' + revision;
|
| + else
|
| + target = 'https://chromium.googlesource.com/chromium/src/+/master';
|
| + target += '/third_party/WebKit/LayoutTests/' + test;
|
| } else
|
| target = globalState().results.layout_tests_dir + '/' + test;
|
| return target;
|
|
|