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

Unified Diff: LayoutTests/fast/dom/promise-rejection-events-console.html

Issue 1189513004: Fix memory leaks caused by PromiseRejectionEvents (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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/fast/dom/promise-rejection-events-console.html
diff --git a/LayoutTests/fast/dom/promise-rejection-events-console.html b/LayoutTests/fast/dom/promise-rejection-events-console.html
index 9098980b1d9e26eabd4655598ea04541375f3571..375a11ac517c028dc7a6aaf05dcf0da5858bd5e5 100644
--- a/LayoutTests/fast/dom/promise-rejection-events-console.html
+++ b/LayoutTests/fast/dom/promise-rejection-events-console.html
@@ -29,7 +29,7 @@ async_test(function(t) {
t.step(function() {
assert_false(evt.cancelable);
assert_equals(evt.promise, p);
- assert_equals(evt.reason, e);
+ assert_equals(evt.reason, undefined);
});
setTimeout(function() {
if (window.internals) {

Powered by Google App Engine
This is Rietveld 408576698