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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/switch-file.html

Issue 1564113003: DevTools: merge uisourcecode's url-alike members. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed Created 4 years, 11 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
Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/switch-file.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/switch-file.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/switch-file.html
index 949b62beb1681195f38b60db91c0ec0e91ca991b..6dd1250ced37931a15b3147eb6aa3c1c9f2ee30f 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/switch-file.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/switch-file.html
@@ -47,8 +47,8 @@ function test()
for (var i = 0; i < uiSourceCodes.length; ++i) {
var uiSourceCode = uiSourceCodes[i];
var nextUISourceCode = WebInspector.SourcesView.SwitchFileActionDelegate._nextFile(uiSourceCode);
- var nextURI = nextUISourceCode ? nextUISourceCode.uri() : "<none>";
- InspectorTest.addResult("Next file for " + uiSourceCode.uri() + " is " + nextURI + ".");
+ var nextURI = nextUISourceCode ? nextUISourceCode.url() : "<none>";
+ InspectorTest.addResult("Next file for " + uiSourceCode.url() + " is " + nextURI + ".");
}
InspectorTest.completeTest();
}

Powered by Google App Engine
This is Rietveld 408576698