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

Unified Diff: third_party/WebKit/LayoutTests/fast/harness/resources/results-test.js

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 | « no previous file | third_party/WebKit/LayoutTests/fast/harness/results.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/harness/resources/results-test.js
diff --git a/third_party/WebKit/LayoutTests/fast/harness/resources/results-test.js b/third_party/WebKit/LayoutTests/fast/harness/resources/results-test.js
index 2f067a5f5b94e1f4d548fd56d9fe281a4f44f777..20e8541ec4ea1bbeb424599487067e8bddd803fd 100644
--- a/third_party/WebKit/LayoutTests/fast/harness/resources/results-test.js
+++ b/third_party/WebKit/LayoutTests/fast/harness/resources/results-test.js
@@ -29,7 +29,7 @@ function mockResults()
"layout_tests_dir": "/WEBKITROOT",
"has_pretty_patch": false,
"has_wdiff": false,
- "revision": 12345,
+ "chromium_revision": 12345,
"pixel_tests_enabled": true
};
}
@@ -421,16 +421,16 @@ function runTests()
var subtree = results.tests['fullscreen'] = {}
subtree['full-screen-api.html'] = mockExpectation('TEXT', 'IMAGE+TEXT');
runTest(results, function() {
- var expectedHref = 'http://src.chromium.org/viewvc/blink/trunk/LayoutTests/fullscreen/full-screen-api.html?pathrev=' + results.revision +'#l1';
+ var expectedHref = 'https://crrev.com/' + results.chromium_revision + '/third_party/WebKit/LayoutTests/fullscreen/full-screen-api.html';
assertTrue(document.querySelector('tbody td:first-child a').href == expectedHref);
});
results = mockResults();
var subtree = results.tests['fullscreen'] = {}
subtree['full-screen-api.html'] = mockExpectation('TEXT', 'IMAGE+TEXT');
- results.revision = '';
+ results.chromium_revision = '';
runTest(results, function() {
- var expectedHref = 'http://src.chromium.org/viewvc/blink/trunk/LayoutTests/fullscreen/full-screen-api.html#l1';
+ var expectedHref = 'https://chromium.googlesource.com/chromium/src/+/master/third_party/WebKit/LayoutTests/fullscreen/full-screen-api.html';
assertTrue(document.querySelector('tbody td:first-child a').href == expectedHref);
});
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/harness/results.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698