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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/file-system-project-mapping.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/file-system-project-mapping.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/file-system-project-mapping.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/file-system-project-mapping.html
index 5ce662337df44b65417213f2700075c22484276d..8fd86316d006a89e59ba6192e8b96c5b67052a47 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/file-system-project-mapping.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/file-system-project-mapping.html
@@ -33,7 +33,7 @@ function test()
InspectorTest.addResult("UISourceCode uri to url mappings:");
for (var i = 0; i < uiSourceCodes.length; ++i) {
var networkURL = InspectorTest.testNetworkMapping.networkURL(uiSourceCodes[i]);
- InspectorTest.addResult(" " + uiSourceCodes[i].uri() + " -> " + networkURL);
+ InspectorTest.addResult(" " + uiSourceCodes[i].url() + " -> " + networkURL);
}
}
@@ -239,7 +239,7 @@ function test()
InspectorTest.addResult("Dumping uiSourceCodes origin URLs:");
var uiSourceCodes = InspectorTest.testWorkspace.uiSourceCodes();
for (var i = 0; i < uiSourceCodes.length; ++i)
- InspectorTest.addResult(" - " + uiSourceCodes[i].originURL());
+ InspectorTest.addResult(" - " + uiSourceCodes[i].url());
}
createWorkspaceWithTarget();

Powered by Google App Engine
This is Rietveld 408576698