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

LibWeb: Add constructor to XMLHttpRequest IDL interface

This commit is contained in:
Linus Groh 2021-02-17 22:53:20 +01:00 committed by Andreas Kling
parent 8f8f7bfd0f
commit 13867600c3
2 changed files with 11 additions and 1 deletions

View file

@ -1,5 +1,7 @@
interface XMLHttpRequest : XMLHttpRequestEventTarget {
constructor();
const unsigned short UNSENT = 0;
const unsigned short OPENED = 1;
const unsigned short HEADERS_RECEIVED = 2;