LibWeb: Add XMLHttpRequest Document response type

This commit is contained in:
Bastiaan van der Plaat 2023-09-14 21:07:53 +02:00 committed by Alexander Kalenik
commit 222cc29c5c
Notes: sideshowbarker 2024-07-17 08:55:54 +09:00
7 changed files with 122 additions and 12 deletions

View file

@ -29,6 +29,7 @@ interface XMLHttpRequest : XMLHttpRequestEventTarget {
readonly attribute unsigned short status;
readonly attribute ByteString statusText;
readonly attribute DOMString responseText;
readonly attribute Document? responseXML;
readonly attribute any response;
attribute XMLHttpRequestResponseType responseType;
attribute unsigned long timeout;