1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:17:35 +00:00

LibWeb: Implement AbortSignal.throwIfAborted

See: cfe2f1e
This commit is contained in:
Luke Wilde 2021-12-10 19:48:51 +00:00 committed by Idan Horowitz
parent 64040c136e
commit 1a5bf15b4d
3 changed files with 19 additions and 0 deletions

View file

@ -4,6 +4,7 @@ interface AbortSignal : EventTarget {
readonly attribute boolean aborted;
readonly attribute any reason;
undefined throwIfAborted();
attribute EventHandler onabort;
};