| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-await/async-pause-on-exception.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-await/async-pause-on-exception.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-await/async-pause-on-exception.html
|
| index cc226e058b4417cfebb282679da47c0261a5d2de..840e1e2721ccdc6e675b96beef7c71abdc3ec134 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-await/async-pause-on-exception.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-await/async-pause-on-exception.html
|
| @@ -56,7 +56,7 @@ var test = function()
|
|
|
| function step1()
|
| {
|
| - InspectorTest.DebuggerAgent.setPauseOnExceptions(WebInspector.DebuggerModel.PauseOnExceptionsState.PauseOnUncaughtExceptions);
|
| + InspectorTest.DebuggerAgent.setPauseOnExceptions(SDK.DebuggerModel.PauseOnExceptionsState.PauseOnUncaughtExceptions);
|
| InspectorTest.showScriptSource("async-pause-on-exception.html", step2);
|
| }
|
|
|
| @@ -69,7 +69,7 @@ var test = function()
|
|
|
| function step3()
|
| {
|
| - InspectorTest.DebuggerAgent.setPauseOnExceptions(WebInspector.DebuggerModel.PauseOnExceptionsState.PauseOnAllExceptions);
|
| + InspectorTest.DebuggerAgent.setPauseOnExceptions(SDK.DebuggerModel.PauseOnExceptionsState.PauseOnAllExceptions);
|
| InspectorTest.addResult("\n=== Pausing on all exceptions ===");
|
| InspectorTest.runTestFunction();
|
| waitUntilPausedNTimes(2, step4);
|
| @@ -77,7 +77,7 @@ var test = function()
|
|
|
| function step4()
|
| {
|
| - InspectorTest.DebuggerAgent.setPauseOnExceptions(WebInspector.DebuggerModel.PauseOnExceptionsState.DontPauseOnExceptions);
|
| + InspectorTest.DebuggerAgent.setPauseOnExceptions(SDK.DebuggerModel.PauseOnExceptionsState.DontPauseOnExceptions);
|
| InspectorTest.completeDebuggerTest();
|
| }
|
| }
|
|
|