mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-01 15:18:06 +00:00
LibWeb: Introduce Blob
This commit is contained in:
parent
0153514314
commit
df8c49f6bf
Notes:
sideshowbarker
2024-07-17 08:52:52 +09:00
Author: https://github.com/kennethmyhra
Commit: df8c49f6bf
Pull-request: https://github.com/SerenityOS/serenity/pull/14563
Reviewed-by: https://github.com/Lubrsi
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/linusg ✅
9 changed files with 299 additions and 1 deletions
|
@ -15,6 +15,8 @@
|
|||
#include <LibWeb/Bindings/AbstractRangeConstructor.h>
|
||||
#include <LibWeb/Bindings/AbstractRangePrototype.h>
|
||||
#include <LibWeb/Bindings/AudioConstructor.h>
|
||||
#include <LibWeb/Bindings/BlobConstructor.h>
|
||||
#include <LibWeb/Bindings/BlobPrototype.h>
|
||||
#include <LibWeb/Bindings/CDATASectionConstructor.h>
|
||||
#include <LibWeb/Bindings/CDATASectionPrototype.h>
|
||||
#include <LibWeb/Bindings/CSSConditionRuleConstructor.h>
|
||||
|
@ -382,6 +384,7 @@
|
|||
ADD_WINDOW_OBJECT_INTERFACE(AbortController) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(AbortSignal) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(AbstractRange) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(Blob) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(CDATASection) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(CSSConditionRule) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(CSSFontFaceRule) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue