mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 16:37:47 +00:00
LibWeb: Add support for AbortSignal.reason
This commit is contained in:
parent
4dbda2d5b4
commit
64040c136e
6 changed files with 40 additions and 14 deletions
|
@ -1,8 +1,9 @@
|
|||
[Exposed=(Window,Worker)]
|
||||
[Exposed=(Window,Worker), CustomVisit]
|
||||
interface AbortSignal : EventTarget {
|
||||
// FIXME: [NewObject] static AbortSignal abort();
|
||||
// FIXME: [NewObject] static AbortSignal abort(optional any reason);
|
||||
|
||||
readonly attribute boolean aborted;
|
||||
readonly attribute any reason;
|
||||
|
||||
attribute EventHandler onabort;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue