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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/event-listener-breakpoints-after-suspension.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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/event-listener-breakpoints-after-suspension.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/event-listener-breakpoints-after-suspension.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/event-listener-breakpoints-after-suspension.html
index f8d2ca1029ef9bfabb6104e57d3bc69dfd427d6f..36b526fa2a55e998b4c27b289d1c750d50d12f2b 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/event-listener-breakpoints-after-suspension.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/event-listener-breakpoints-after-suspension.html
@@ -22,7 +22,7 @@ function test()
function start()
{
- var pane = self.runtime.sharedInstance(WebInspector.EventListenerBreakpointsSidebarPane);
+ var pane = self.runtime.sharedInstance(Sources.EventListenerBreakpointsSidebarPane);
pane._setBreakpoint("listener:click");
InspectorTest.waitUntilPaused(paused);
InspectorTest.evaluateInPageWithTimeout("addListenerAndClick()");
@@ -37,14 +37,14 @@ function test()
function suspendAll()
{
InspectorTest.addResult("Suspend all targets");
- WebInspector.targetManager.suspendAllTargets();
+ SDK.targetManager.suspendAllTargets();
InspectorTest.deprecatedRunAfterPendingDispatches(resumeAll);
}
function resumeAll()
{
InspectorTest.addResult("Resume all targets");
- WebInspector.targetManager.resumeAllTargets();
+ SDK.targetManager.resumeAllTargets();
InspectorTest.waitUntilPaused(finish);
InspectorTest.evaluateInPageWithTimeout("addListenerAndClick()");
}

Powered by Google App Engine
This is Rietveld 408576698