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
commit 288b90a297
Notes: sideshowbarker 2024-07-18 20:51:53 +09:00
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);