Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/possible-breakpoints.html |
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/possible-breakpoints.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/possible-breakpoints.html |
index 578df05a9ce644ac23d0e47de519cbaa71b19c70..a6727963ba0ab4ed5c93da49f21207c1c028e35e 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/possible-breakpoints.html |
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/possible-breakpoints.html |
@@ -23,16 +23,16 @@ function test() |
var breakpointManager = Bindings.breakpointManager; |
InspectorTest.addResult("Locations for first line"); |
- breakpointManager.possibleBreakpoints(uiSourceCode, new Common.TextRange(0, 0, 1, 0)) |
+ breakpointManager.possibleBreakpoints(uiSourceCode, new TextUtils.TextRange(0, 0, 1, 0)) |
.then(dumpLocations) |
.then(() => InspectorTest.addResult("All locations")) |
- .then(() => breakpointManager.possibleBreakpoints(uiSourceCode, new Common.TextRange(0, 0, 6, 0))) |
+ .then(() => breakpointManager.possibleBreakpoints(uiSourceCode, new TextUtils.TextRange(0, 0, 6, 0))) |
.then(dumpLocations) |
.then(() => InspectorTest.addResult("Existing location by position")) |
- .then(() => breakpointManager.possibleBreakpoints(uiSourceCode, new Common.TextRange(2, 31, 2, 32))) |
+ .then(() => breakpointManager.possibleBreakpoints(uiSourceCode, new TextUtils.TextRange(2, 31, 2, 32))) |
.then(dumpLocations) |
.then(() => InspectorTest.addResult("Not existing location by position")) |
- .then(() => breakpointManager.possibleBreakpoints(uiSourceCode, new Common.TextRange(2, 32, 2, 33))) |
+ .then(() => breakpointManager.possibleBreakpoints(uiSourceCode, new TextUtils.TextRange(2, 32, 2, 33))) |
.then(dumpLocations) |
.then(() => InspectorTest.completeDebuggerTest()); |
} |