mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:07:35 +00:00
LibWeb: Implement '5.1. Headers class' from the Fetch API :^)
This commit is contained in:
parent
b5ab1f6b4a
commit
ed49b66f25
9 changed files with 516 additions and 0 deletions
|
@ -235,6 +235,8 @@
|
|||
#include <LibWeb/Bindings/HTMLUnknownElementPrototype.h>
|
||||
#include <LibWeb/Bindings/HTMLVideoElementConstructor.h>
|
||||
#include <LibWeb/Bindings/HTMLVideoElementPrototype.h>
|
||||
#include <LibWeb/Bindings/HeadersConstructor.h>
|
||||
#include <LibWeb/Bindings/HeadersPrototype.h>
|
||||
#include <LibWeb/Bindings/HistoryConstructor.h>
|
||||
#include <LibWeb/Bindings/HistoryPrototype.h>
|
||||
#include <LibWeb/Bindings/IdleDeadlineConstructor.h>
|
||||
|
@ -420,6 +422,7 @@
|
|||
ADD_WINDOW_OBJECT_INTERFACE(ErrorEvent) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(Event) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(EventTarget) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(Headers) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(History) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(HTMLAnchorElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(HTMLAreaElement) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue