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

LibWeb: Implement XMLHttpRequest.withCredentials

This commit is contained in:
Linus Groh 2022-11-13 14:47:21 +00:00
parent bfa378660b
commit 93c0c73b9e
3 changed files with 35 additions and 2 deletions

View file

@ -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 = {});