| 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 b07fde0b977b408d12d453d6bbca8e75172f4111..04f0e4a9670d280aeb38cdb0302cd7d740aef4ed 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
|
| @@ -7,8 +7,6 @@
|
|
|
| function test()
|
| {
|
| -
|
| - var pane = Components.domBreakpointsSidebarPane;
|
| InspectorTest.runDebuggerTestSuite([
|
| function testRemoveNode(next)
|
| {
|
| @@ -17,7 +15,7 @@ function test()
|
|
|
| function step2(node)
|
| {
|
| - pane._setBreakpoint(node, Components.DOMBreakpointsSidebarPane.BreakpointTypes.NodeRemoved, true);
|
| + InspectorTest.domDebuggerModel.setDOMBreakpoint(node, SDK.DOMDebuggerModel.DOMBreakpoint.Type.NodeRemoved);
|
| InspectorTest.addResult("Set NodeRemoved DOM breakpoint.");
|
| node.removeNode(next);
|
| }
|
| @@ -30,7 +28,7 @@ function test()
|
|
|
| function step2(node)
|
| {
|
| - pane._setBreakpoint(node, Components.DOMBreakpointsSidebarPane.BreakpointTypes.AttributeModified, true);
|
| + InspectorTest.domDebuggerModel.setDOMBreakpoint(node, SDK.DOMDebuggerModel.DOMBreakpoint.Type.AttributeModified);
|
| InspectorTest.addResult("Set AttributeModified DOM breakpoint.");
|
| node.setAttribute("title", "a title", next);
|
| }
|
|
|