mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-29 05:38:24 +00:00
LibWeb: Implement XMLHttpRequest.status
This lets jQuery's AJAX functionality progress further :^)
This commit is contained in:
parent
e02270c5cc
commit
288b90a297
Notes:
sideshowbarker
2024-07-18 20:51:53 +09:00
Author: https://github.com/linusg
Commit: 288b90a297
Pull-request: https://github.com/SerenityOS/serenity/pull/6090
3 changed files with 8 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue