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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/skip-pauses-until-reload.html

Issue 2234193002: DevTools: migrate some of the sources panel sidebar panes to view management, allow view toolbars. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed 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-pause/skip-pauses-until-reload.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/skip-pauses-until-reload.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/skip-pauses-until-reload.html
index 812fc0da9835cb376e4cb41dbdfc00e0d081c248..eed5d2665e575f0ba1329626873d86b1bf6c6e4f 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/skip-pauses-until-reload.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/skip-pauses-until-reload.html
@@ -82,7 +82,7 @@ function test()
function setUpEventBreakpoints()
{
testRunner.logToStderr("setUpEventBreakpoints");
- var pane = WebInspector.panels.sources.sidebarPanes.eventListenerBreakpoints;
+ var pane = self.runtime.sharedInstance(WebInspector.EventListenerBreakpointsSidebarPane);
InspectorTest.addResult("Set up Event breakpoints.");
pane._setBreakpoint("listener:click");
InspectorTest.deprecatedRunAfterPendingDispatches(didSetUp);
@@ -136,7 +136,7 @@ function test()
function completeTest()
{
testRunner.logToStderr("completeTest");
- var pane = WebInspector.panels.sources.sidebarPanes.eventListenerBreakpoints;
+ var pane = self.runtime.sharedInstance(WebInspector.EventListenerBreakpointsSidebarPane);
pane._removeBreakpoint("listener:click");
InspectorTest.completeDebuggerTest();
}

Powered by Google App Engine
This is Rietveld 408576698