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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <meta charset="utf-8"> 2 <meta charset="utf-8">
3 <script src="../../resources/testharness.js"></script> 3 <script src="../../resources/testharness.js"></script>
4 <script src="../../resources/testharnessreport.js"></script> 4 <script src="../../resources/testharnessreport.js"></script>
5 <script> 5 <script>
6 'use strict'; 6 'use strict';
7 async_test(function(t) { 7 async_test(function(t) {
8 var e = new Error('e'); 8 var e = new Error('e');
9 var p = Promise.reject(e); 9 var p = Promise.reject(e);
10 10
(...skipping 11 matching lines...) Expand all
22 }); 22 });
23 }); 23 });
24 }, 10); 24 }, 10);
25 evt.preventDefault(); 25 evt.preventDefault();
26 }; 26 };
27 27
28 window.onrejectionhandled = function(evt) { 28 window.onrejectionhandled = function(evt) {
29 t.step(function() { 29 t.step(function() {
30 assert_false(evt.cancelable); 30 assert_false(evt.cancelable);
31 assert_equals(evt.promise, p); 31 assert_equals(evt.promise, p);
32 assert_equals(evt.reason, e); 32 assert_equals(evt.reason, undefined);
33 }); 33 });
34 setTimeout(function() { 34 setTimeout(function() {
35 if (window.internals) { 35 if (window.internals) {
36 t.step(function() { 36 t.step(function() {
37 assert_equals(internals.consoleMessageArgumentCounts(document).length, 0); 37 assert_equals(internals.consoleMessageArgumentCounts(document).length, 0);
38 }); 38 });
39 } 39 }
40 t.done(); 40 t.done();
41 }, 10); 41 }, 10);
42 }; 42 };
43 }, 'evt.preventDefault() should suppress console output.'); 43 }, 'evt.preventDefault() should suppress console output.');
44 </script> 44 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698