Issue #2435 - Add onrejectionhandled and onunhandledrejection EventHandler

Based-on: m-c 1362272
This commit is contained in:
Martok 2024-01-02 02:10:31 +01:00 committed by roytam1
commit 65d72c5682
6 changed files with 14 additions and 4 deletions

View file

@ -25,6 +25,8 @@ interface WorkerGlobalScope : EventTarget {
attribute EventHandler onoffline;
attribute EventHandler ononline;
attribute EventHandler onrejectionhandled;
attribute EventHandler onunhandledrejection;
// also has additional members in a partial interface
};