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

LibWeb: Implement XMLHttpRequest.onreadystatechange

This commit is contained in:
Andreas Kling 2021-09-19 01:40:13 +02:00
parent 824be02cb0
commit dc8707527f
3 changed files with 16 additions and 0 deletions

View file

@ -18,4 +18,6 @@ interface XMLHttpRequest : XMLHttpRequestEventTarget {
ByteString? getResponseHeader(ByteString name);
attribute EventHandler onreadystatechange;
};