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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/debugger-eval-while-paused-throws.html

Issue 2249743006: [DevTools] Fill ExceptionDetails with more details, unify usage across protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: browser test Created 4 years, 4 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
Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/debugger-eval-while-paused-throws.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/debugger-eval-while-paused-throws.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/debugger-eval-while-paused-throws.html
index 14f7f8dd7dbcca2072c57fb8e9dd4a838524c6e8..aa66025671cea625c6d6a8d2c3d7aeaac4afe664 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/debugger-eval-while-paused-throws.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/debugger-eval-while-paused-throws.html
@@ -65,13 +65,11 @@ var test = function()
function dumpConsoleMessages()
{
- InspectorTest.addResult("Dumping console messages:\n");
- InspectorTest.dumpConsoleMessages(false, false, formatter);
- InspectorTest.completeDebuggerTest();
- }
-
- function formatter(element, message) {
- return message.messageText;
+ InspectorTest.deprecatedRunAfterPendingDispatches(() => {
+ InspectorTest.addResult("Dumping console messages:\n");
+ InspectorTest.dumpConsoleMessages();
+ InspectorTest.completeDebuggerTest();
+ });
}
}

Powered by Google App Engine
This is Rietveld 408576698