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

LibWeb: Add support for DOM::Document to XHR::send()

This patch adds support for posting a DOM::Document using XHR::send().
This commit is contained in:
Kenneth Myhra 2022-10-15 16:28:49 +02:00 committed by Ali Mohammad Pur
parent d5247ae33e
commit 7831e62955
4 changed files with 27 additions and 10 deletions

View file

@ -47,7 +47,7 @@ public:
WebIDL::ExceptionOr<void> open(String const& method, String const& url);
WebIDL::ExceptionOr<void> open(String const& method, String const& url, bool async, String const& username = {}, String const& password = {});
WebIDL::ExceptionOr<void> send(Optional<Fetch::XMLHttpRequestBodyInit> body);
WebIDL::ExceptionOr<void> send(Optional<Variant<JS::Handle<DOM::Document>, Fetch::XMLHttpRequestBodyInit>> body = {});
WebIDL::ExceptionOr<void> set_request_header(String const& header, String const& value);
void set_response_type(Bindings::XMLHttpRequestResponseType type) { m_response_type = type; }