1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:37:35 +00:00

LibWeb: Use DOMException in XMLHttpRequest::send()

This commit is contained in:
Linus Groh 2021-02-20 00:46:52 +01:00 committed by Andreas Kling
parent 70878290b9
commit 14058b6858
2 changed files with 10 additions and 13 deletions

View file

@ -71,7 +71,7 @@ public:
String response_text() const;
DOM::ExceptionOr<void> open(const String& method, const String& url);
void send();
DOM::ExceptionOr<void> send();
DOM::ExceptionOr<void> set_request_header(const String& header, const String& value);