1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:57:44 +00:00

LibWeb: Stub XMLHttpRequest.abort

This commit is contained in:
Luke Wilde 2022-11-05 03:35:02 +00:00 committed by Andreas Kling
parent 9805cdeaf5
commit 6c21c72492
3 changed files with 8 additions and 0 deletions

View file

@ -34,6 +34,7 @@ interface XMLHttpRequest : XMLHttpRequestEventTarget {
undefined open(ByteString method, USVString url, boolean async, optional USVString? username = {}, optional USVString? password = {});
undefined setRequestHeader(DOMString name, DOMString value);
undefined send(optional XMLHttpRequestBodyInit? body = null);
undefined abort();
ByteString? getResponseHeader(ByteString name);
ByteString getAllResponseHeaders();