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

LibWeb: Implement XMLHttpRequest.getAllResponseHeaders()

This commit is contained in:
Andreas Kling 2021-09-19 22:32:33 +02:00
parent 95559c4277
commit 7ef4d75716
3 changed files with 21 additions and 0 deletions

View file

@ -17,6 +17,7 @@ interface XMLHttpRequest : XMLHttpRequestEventTarget {
undefined send();
ByteString? getResponseHeader(ByteString name);
ByteString getAllResponseHeaders();
attribute EventHandler onreadystatechange;