1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:37:45 +00:00

LibWeb: Implement XMLHttpRequest.getResponseHeader()

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

View file

@ -16,4 +16,6 @@ interface XMLHttpRequest : XMLHttpRequestEventTarget {
undefined setRequestHeader(DOMString name, DOMString value);
undefined send();
ByteString? getResponseHeader(ByteString name);
};