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
commit 14058b6858
Notes: sideshowbarker 2024-07-18 22:07:48 +09:00
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);