1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:57:45 +00:00

LibWeb: Implement '5.1. Headers class' from the Fetch API :^)

This commit is contained in:
Linus Groh 2022-07-19 00:19:24 +01:00
parent b5ab1f6b4a
commit ed49b66f25
9 changed files with 516 additions and 0 deletions

View file

@ -170,6 +170,11 @@ namespace Web::Encoding {
class TextEncoder;
}
namespace Web::Fetch {
class Headers;
class HeadersIterator;
}
namespace Web::Fetch::Infrastructure {
class Body;
struct Header;
@ -470,6 +475,8 @@ class EventListenerWrapper;
class EventTargetWrapper;
class EventWrapper;
class FocusEventWrapper;
class HeadersWrapper;
class HeadersIteratorWrapper;
class HistoryWrapper;
class HTMLAnchorElementWrapper;
class HTMLAreaElementWrapper;