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

Unified Diff: third_party/WebKit/LayoutTests/fast/harness/results.html

Issue 2038133002: Link to the Chromium git repo, not the old Blink svn repo, in layout test results. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove logging Created 4 years, 6 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 | « third_party/WebKit/LayoutTests/fast/harness/resources/results-test.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/harness/resources/results-test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698