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

Unified Diff: LayoutTests/inspector/sources/debugger/event-listener-breakpoints-promises.html

Issue 650203003: Revert of Catch uncaught promise rejections from V8 and log to console. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: LayoutTests/inspector/sources/debugger/event-listener-breakpoints-promises.html
diff --git a/LayoutTests/inspector/sources/debugger/event-listener-breakpoints-promises.html b/LayoutTests/inspector/sources/debugger/event-listener-breakpoints-promises.html
index 22d4c1bd41dfe6223a20ce8ef400c1dca43fa934..032e155780463f421e7cba55df576a52b7f79c12 100644
--- a/LayoutTests/inspector/sources/debugger/event-listener-breakpoints-promises.html
+++ b/LayoutTests/inspector/sources/debugger/event-listener-breakpoints-promises.html
@@ -18,7 +18,7 @@
var q = new Promise(function(res, rej) {
reject = rej;
});
- q.catch(function() {
+ q.then(function() {
});
resolve(42);

Powered by Google App Engine
This is Rietveld 408576698