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

LibWeb/Fetch: Add duplex property to Request

This is a change in the Fetch spec.

See: 1fbc40c
This commit is contained in:
Linus Groh 2022-10-15 00:41:10 +02:00
parent 60e9790a40
commit 5995a9fd06
3 changed files with 10 additions and 0 deletions

View file

@ -92,6 +92,7 @@ public:
[[nodiscard]] bool is_reload_navigation() const;
[[nodiscard]] bool is_history_navigation() const;
[[nodiscard]] JS::NonnullGCPtr<DOM::AbortSignal> signal() const;
[[nodiscard]] Bindings::RequestDuplex duplex() const;
[[nodiscard]] WebIDL::ExceptionOr<JS::NonnullGCPtr<Request>> clone() const;
private: