| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.html
|
| index 6ee470892bfafc72aec309e4b4fbbc2dbcc8c515..a2a0d3b65528045c7b5144ba67fc692abbfabf05 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.html
|
| @@ -187,8 +187,7 @@ function test()
|
|
|
| uiLocationToRawLocation: function(uiSourceCode, lineNumber)
|
| {
|
| - var networkURL = InspectorTest.testNetworkMapping.networkURL(uiSourceCode);
|
| - return new WebInspector.DebuggerModel.Location(mockTarget.debuggerModel, networkURL, lineNumber - 10, 0);
|
| + return new WebInspector.DebuggerModel.Location(mockTarget.debuggerModel, uiSourceCode.url(), lineNumber - 10, 0);
|
| },
|
|
|
| isIdentity: function()
|
| @@ -260,8 +259,7 @@ function test()
|
|
|
| uiLocationToRawLocation: function(uiSourceCode, lineNumber)
|
| {
|
| - var networkURL = InspectorTest.testNetworkMapping.networkURL(uiSourceCodeA);
|
| - return new WebInspector.DebuggerModel.Location(mockTarget.debuggerModel, networkURL, lineNumber - 10, 0);
|
| + return new WebInspector.DebuggerModel.Location(mockTarget.debuggerModel, uiSourceCodeA.url(), lineNumber - 10, 0);
|
| },
|
|
|
| isIdentity: function()
|
|
|