diff options
author | Linus Groh <mail@linusgroh.de> | 2022-11-13 14:47:21 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-14 10:00:11 +0000 |
commit | 93c0c73b9e4dbfcc60cf2096642215901375314f (patch) | |
tree | db0e4bcbd64f3da714fede25c618943398d62b9c /Userland/Libraries/LibWeb/XHR/XMLHttpRequest.idl | |
parent | bfa378660be6982397540ff9ece73049e4c0b195 (diff) | |
download | serenity-93c0c73b9e4dbfcc60cf2096642215901375314f.zip |
LibWeb: Implement XMLHttpRequest.withCredentials
Diffstat (limited to 'Userland/Libraries/LibWeb/XHR/XMLHttpRequest.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/XHR/XMLHttpRequest.idl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/XHR/XMLHttpRequest.idl b/Userland/Libraries/LibWeb/XHR/XMLHttpRequest.idl index cf43329f4c..7e9660e76a 100644 --- a/Userland/Libraries/LibWeb/XHR/XMLHttpRequest.idl +++ b/Userland/Libraries/LibWeb/XHR/XMLHttpRequest.idl @@ -30,6 +30,7 @@ interface XMLHttpRequest : XMLHttpRequestEventTarget { readonly attribute any response; attribute XMLHttpRequestResponseType responseType; attribute unsigned long timeout; + attribute boolean withCredentials; undefined open(DOMString method, DOMString url); undefined open(ByteString method, USVString url, boolean async, optional USVString? username = {}, optional USVString? password = {}); |