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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.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/live-edit-breakpoints.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html
index ffdbabd010d6ffd0a51c0262dedb8ba10bd4f114..b6a3301be01d4704cb0156e0d97368511806c67f 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html
@@ -38,10 +38,10 @@ function test()
for (var i = 0; i < locations.length; ++i) {
var uiLocation = locations[i].uiLocation;
var uiSourceCode = uiLocation.uiSourceCode;
- var originURL = uiSourceCode.originURL();
+ var url = uiSourceCode.url();
var lineNumber = uiLocation.lineNumber;
var project = uiSourceCode.project();
- InspectorTest.addResult(" url: " + pathToFileName(originURL) + ", lineNumber: " + lineNumber + ", project type: " + project.type());
+ InspectorTest.addResult(" url: " + pathToFileName(url) + ", lineNumber: " + lineNumber + ", project type: " + project.type());
}
breakpoints = breakpointManager.allBreakpoints();
@@ -50,9 +50,9 @@ function test()
var breakpoint = breakpoints[i];
var uiSourceCode = breakpointManager._workspace.uiSourceCode(breakpoint.projectId(), breakpoint.path());
var lineNumber = breakpoint.lineNumber();
- var originURL = uiSourceCode.originURL();
+ var url = uiSourceCode.url();
var project = uiSourceCode.project();
- InspectorTest.addResult(" url: " + pathToFileName(originURL) + ", lineNumber: " + lineNumber + ", project type: " + project.type());
+ InspectorTest.addResult(" url: " + pathToFileName(url) + ", lineNumber: " + lineNumber + ", project type: " + project.type());
}
}

Powered by Google App Engine
This is Rietveld 408576698