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 c896fa097cb9e96ac4fa37940f65e173f2cc813b..2c97c3a27a6857a5f1d6efd6328e27286f35b516 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 |
@@ -183,9 +183,9 @@ function test() |
return InspectorTest.uiSourceCodes[rawLocation.scriptId].uiLocation(rawLocation.lineNumber + 10, 0); |
}, |
- uiLocationToRawLocation: function(uiSourceCode, lineNumber) |
+ uiLocationToRawLocations: function(uiSourceCode, lineNumber) |
{ |
- return new SDK.DebuggerModel.Location(mockTarget.debuggerModel, uiSourceCode.url(), lineNumber - 10, 0); |
+ return [new SDK.DebuggerModel.Location(mockTarget.debuggerModel, uiSourceCode.url(), lineNumber - 10, 0)]; |
}, |
isIdentity: function() |
@@ -255,9 +255,9 @@ function test() |
return uiSourceCodeB.uiLocation(rawLocation.lineNumber + 10, 0); |
}, |
- uiLocationToRawLocation: function(uiSourceCode, lineNumber) |
+ uiLocationToRawLocations: function(uiSourceCode, lineNumber) |
{ |
- return new SDK.DebuggerModel.Location(mockTarget.debuggerModel, uiSourceCodeA.url(), lineNumber - 10, 0); |
+ return [new SDK.DebuggerModel.Location(mockTarget.debuggerModel, uiSourceCodeA.url(), lineNumber - 10, 0)]; |
}, |
isIdentity: function() |