| 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()");
|
| }
|
|
|