| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/nodejs-set-breakpoint.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/nodejs-set-breakpoint.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/nodejs-set-breakpoint.html
|
| index 12378b967c5e9b9fba8b652fadfcffa441b8e341..10d159e7ffc3ec6c648d2dda0d7c724eb19c5be5 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/nodejs-set-breakpoint.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/nodejs-set-breakpoint.html
|
| @@ -6,7 +6,7 @@
|
| <script>
|
| function test()
|
| {
|
| - WebInspector.targetManager.mainTarget().setIsNodeJSForTest();
|
| + SDK.targetManager.mainTarget().setIsNodeJSForTest();
|
| InspectorTest.startDebuggerTest();
|
|
|
| var functionText = "function foobar() { \nconsole.log('foobar execute!');\n}";
|
| @@ -17,7 +17,7 @@ function test()
|
| function didShowScriptSource(sourceFrame)
|
| {
|
| InspectorTest.addResult("Setting breakpoint:");
|
| - InspectorTest.addSniffer(WebInspector.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolved);
|
| + InspectorTest.addSniffer(Bindings.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolved);
|
| InspectorTest.setBreakpoint(sourceFrame, 1, "", true);
|
| }
|
|
|
|
|