1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:47:36 +00:00

LibWeb: Implement AbortSignal.onabort

This commit is contained in:
Luke Wilde 2021-10-01 01:09:11 +01:00 committed by Andreas Kling
parent de72332920
commit 971d60c329
3 changed files with 15 additions and 1 deletions

View file

@ -4,5 +4,5 @@ interface AbortSignal : EventTarget {
readonly attribute boolean aborted;
// FIXME: attribute EventHandler onabort;
attribute EventHandler onabort;
};