| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dom-breakpoints-editing-dom-from-inspector.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dom-breakpoints-editing-dom-from-inspector.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dom-breakpoints-editing-dom-from-inspector.html
|
| index 7c125ece0383d274e846e0c2409187e0eda8f274..38e73c132b779361da4fbaea50f06da923ab8f95 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dom-breakpoints-editing-dom-from-inspector.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dom-breakpoints-editing-dom-from-inspector.html
|
| @@ -17,7 +17,7 @@ function test()
|
|
|
| function step2(node)
|
| {
|
| - pane._setBreakpoint(node, pane._breakpointTypes.NodeRemoved, true);
|
| + WebInspector.domBreakpointManager.setBreakpoint(node, pane._breakpointTypes.NodeRemoved, true);
|
| InspectorTest.addResult("Set NodeRemoved DOM breakpoint.");
|
| node.removeNode(next);
|
| }
|
| @@ -30,7 +30,7 @@ function test()
|
|
|
| function step2(node)
|
| {
|
| - pane._setBreakpoint(node, pane._breakpointTypes.AttributeModified, true);
|
| + WebInspector.domBreakpointManager.setBreakpoint(node, pane._breakpointTypes.AttributeModified, true);
|
| InspectorTest.addResult("Set AttributeModified DOM breakpoint.");
|
| node.setAttribute("title", "a title", next);
|
| }
|
|
|