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

LibWeb: Implement XMLHttpRequest.status

This lets jQuery's AJAX functionality progress further :^)
This commit is contained in:
Linus Groh 2021-04-03 15:17:29 +02:00 committed by Andreas Kling
parent e02270c5cc
commit 288b90a297
3 changed files with 8 additions and 2 deletions

View file

@ -9,6 +9,7 @@ interface XMLHttpRequest : XMLHttpRequestEventTarget {
const unsigned short DONE = 4;
readonly attribute unsigned short readyState;
readonly attribute unsigned short status;
readonly attribute DOMString responseText;
undefined open(DOMString method, DOMString url);