Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/resource-script-mapping.html |
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/resource-script-mapping.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/resource-script-mapping.html |
index 1ca241e15914d47ffb1a3683f28ecd6d88c71673..f6ce3ddd59a4fe496ed54344a660c3fe055c9eaf 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/resource-script-mapping.html |
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/resource-script-mapping.html |
@@ -45,7 +45,7 @@ function test() |
var rawLocation = InspectorTest.debuggerModel.createRawLocation(script, line, column); |
var uiLocation = Bindings.debuggerWorkspaceBinding.rawLocationToUILocation(rawLocation); |
InspectorTest.checkUILocation(uiSourceCode, line, column, uiLocation); |
- var reverseLocation = Bindings.debuggerWorkspaceBinding.uiLocationToRawLocation(uiSourceCode, line, column); |
+ var reverseLocation = Bindings.debuggerWorkspaceBinding.uiLocationToRawLocations(uiSourceCode, line, column)[0]; |
InspectorTest.checkRawLocation(script, line, column, reverseLocation); |
} |
InspectorTest.completeTest(); |