LibWeb: Implement XMLHttpRequest.onreadystatechange

This commit is contained in:
Andreas Kling 2021-09-19 01:40:13 +02:00
commit dc8707527f
Notes: sideshowbarker 2024-07-18 03:41:24 +09:00
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;
};