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

Unified Diff: LayoutTests/inspector/sources/debugger/debugger-pause-on-exception.html

Issue 651533003: DevTools: Introduce Debugger::Reason::PromiseRejection pause reason. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: also disaply <exception> in scopes sidebar Created 6 years, 2 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
« no previous file with comments | « no previous file | LayoutTests/inspector/sources/debugger/debugger-pause-on-exception-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/sources/debugger/debugger-pause-on-exception.html
diff --git a/LayoutTests/inspector/sources/debugger/debugger-pause-on-exception.html b/LayoutTests/inspector/sources/debugger/debugger-pause-on-exception.html
index ad2967de325b8faef1c6b6276ee213454b3e0cf0..80c59b6583ba34d612843289186d4029337d6bc9 100644
--- a/LayoutTests/inspector/sources/debugger/debugger-pause-on-exception.html
+++ b/LayoutTests/inspector/sources/debugger/debugger-pause-on-exception.html
@@ -28,12 +28,12 @@ var test = function()
{
InspectorTest.addResult("Script source was shown.");
InspectorTest.evaluateInPage("setTimeout(handleClick, 0)");
- InspectorTest.waitUntilPaused(step3);
+ InspectorTest.waitUntilPausedAndDumpStackAndResume(step3);
}
- function step3(callFrames)
+ function step3()
{
- InspectorTest.captureStackTrace(callFrames);
+ DebuggerAgent.setPauseOnExceptions(WebInspector.DebuggerModel.PauseOnExceptionsState.DontPauseOnExceptions);
InspectorTest.completeDebuggerTest();
}
}
« no previous file with comments | « no previous file | LayoutTests/inspector/sources/debugger/debugger-pause-on-exception-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698