| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-skip-break-program.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-skip-break-program.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-skip-break-program.html
|
| index 94a64f5e46bf7e5eaaf85d06b986b014aee7af80..5f1267f2de4729c9f4e6a08e1d895bd0cb9bc7eb 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-skip-break-program.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-skip-break-program.html
|
| @@ -25,9 +25,9 @@ function stop()
|
| function test()
|
| {
|
| var frameworkRegexString = "/framework\\.js$";
|
| - WebInspector.settingForTest("skipStackFramesPattern").set(frameworkRegexString);
|
| + Common.settingForTest("skipStackFramesPattern").set(frameworkRegexString);
|
|
|
| - var pane = self.runtime.sharedInstance(WebInspector.EventListenerBreakpointsSidebarPane);
|
| + var pane = self.runtime.sharedInstance(Sources.EventListenerBreakpointsSidebarPane);
|
|
|
| InspectorTest.startDebuggerTest(step1, true);
|
|
|
| @@ -38,7 +38,7 @@ function test()
|
|
|
| function step2()
|
| {
|
| - InspectorTest.DebuggerAgent.setPauseOnExceptions(WebInspector.DebuggerModel.PauseOnExceptionsState.PauseOnAllExceptions);
|
| + InspectorTest.DebuggerAgent.setPauseOnExceptions(SDK.DebuggerModel.PauseOnExceptionsState.PauseOnAllExceptions);
|
| pane._setBreakpoint("instrumentation:setTimer");
|
| InspectorTest.resumeExecution(InspectorTest.waitUntilPaused.bind(InspectorTest, didPause));
|
| }
|
| @@ -51,7 +51,7 @@ function test()
|
|
|
| function completeTest()
|
| {
|
| - InspectorTest.DebuggerAgent.setPauseOnExceptions(WebInspector.DebuggerModel.PauseOnExceptionsState.DontPauseOnExceptions);
|
| + InspectorTest.DebuggerAgent.setPauseOnExceptions(SDK.DebuggerModel.PauseOnExceptionsState.DontPauseOnExceptions);
|
| pane._removeBreakpoint("instrumentation:setTimer");
|
| InspectorTest.completeDebuggerTest();
|
| }
|
|
|