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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dom-breakpoints-editing-dom-from-inspector.html

Issue 2191183003: DevTools: extract model from DOMBreakpointsSidebarPane (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nit Created 4 years, 4 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/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..a3162060621a155bdda2cb41525dd25dd04d7401 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);
+ pane.domDebuggerModel().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);
+ pane.domDebuggerModel().setBreakpoint(node, pane._breakpointTypes.AttributeModified, true);
InspectorTest.addResult("Set AttributeModified DOM breakpoint.");
node.setAttribute("title", "a title", next);
}

Powered by Google App Engine
This is Rietveld 408576698