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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/possible-breakpoints.html

Issue 2769843003: DevTools: split text_utils out of common module (Closed)
Patch Set: rebaseline Created 3 years, 9 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-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());
}

Powered by Google App Engine
This is Rietveld 408576698