mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 20:42:21 +00:00
LibWeb: Introduce the File interface from the FileAPI spec
This commit is contained in:
parent
df91dbfbb6
commit
890514a057
Notes:
sideshowbarker
2024-07-17 08:33:05 +09:00
Author: https://github.com/kennethmyhra
Commit: 890514a057
Pull-request: https://github.com/SerenityOS/serenity/pull/14694
Reviewed-by: https://github.com/linusg
Reviewed-by: https://github.com/trflynn89
9 changed files with 139 additions and 0 deletions
|
@ -87,6 +87,8 @@
|
|||
#include <LibWeb/Bindings/EventPrototype.h>
|
||||
#include <LibWeb/Bindings/EventTargetConstructor.h>
|
||||
#include <LibWeb/Bindings/EventTargetPrototype.h>
|
||||
#include <LibWeb/Bindings/FileConstructor.h>
|
||||
#include <LibWeb/Bindings/FilePrototype.h>
|
||||
#include <LibWeb/Bindings/FocusEventConstructor.h>
|
||||
#include <LibWeb/Bindings/FocusEventPrototype.h>
|
||||
#include <LibWeb/Bindings/HTMLAnchorElementConstructor.h>
|
||||
|
@ -422,6 +424,7 @@
|
|||
ADD_WINDOW_OBJECT_INTERFACE(ErrorEvent) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(Event) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(EventTarget) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(File) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(Headers) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(History) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(HTMLAnchorElement) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue