Changeset 215938 in webkit
- Timestamp:
- Apr 28, 2017, 1:13:57 PM (8 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r215937 r215938 1 2017-04-28 Joseph Pecoraro <pecoraro@apple.com> 2 3 LayoutTests/js/dom/Promise-static-all/race.html are flakey - Unhandled Promise Rejection messages 4 https://bugs.webkit.org/show_bug.cgi?id=171445 5 6 Reviewed by Saam Barati. 7 8 * js/dom/Promise-static-all.html: 9 * js/dom/Promise-static-race.html: 10 Silence the console messages for unhandled rejections in this test. 11 There are unhandled rejections and messages sometimes appear 12 depending on the order of events on the page. The messages are not 13 important for this test so just mute them. 14 1 15 2017-04-28 Chris Dumez <cdumez@apple.com> 2 16 -
trunk/LayoutTests/js/dom/Promise-static-all.html
r161365 r215938 9 9 <script> 10 10 description('Test Promise.all'); 11 12 // Silence unhandled rejection messages. 13 // window.onunhandledrejection = () => false; 11 14 12 15 window.jsTestIsAsync = true; -
trunk/LayoutTests/js/dom/Promise-static-race.html
r161330 r215938 9 9 <script> 10 10 description('Test Promise.race'); 11 12 // Silence unhandled rejection messages. 13 window.onunhandledrejection = () => false; 11 14 12 15 window.jsTestIsAsync = true;
Note:
See TracChangeset
for help on using the changeset viewer.