diff options
author | Ali Mohammad Pur <ali.mpfard@gmail.com> | 2022-02-15 22:40:51 +0330 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2022-02-16 22:48:32 +0330 |
commit | a59800b4a0b0bb0b93f8b54254b46e23c1cc0ec7 (patch) | |
tree | 831352f21814603c7b7eace516a4d712e36d37b3 /Userland/Libraries/LibWeb/XHR | |
parent | eccdf4eb4bd30f789ca6bb810557e86a36400d62 (diff) | |
download | serenity-a59800b4a0b0bb0b93f8b54254b46e23c1cc0ec7.zip |
LibWeb: Add imports to all IDL files that depend on others
Diffstat (limited to 'Userland/Libraries/LibWeb/XHR')
-rw-r--r-- | Userland/Libraries/LibWeb/XHR/XMLHttpRequest.idl | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/XHR/XMLHttpRequestEventTarget.idl | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/XHR/XMLHttpRequest.idl b/Userland/Libraries/LibWeb/XHR/XMLHttpRequest.idl index 2665660032..b0de53a340 100644 --- a/Userland/Libraries/LibWeb/XHR/XMLHttpRequest.idl +++ b/Userland/Libraries/LibWeb/XHR/XMLHttpRequest.idl @@ -1,3 +1,5 @@ +#import <XHR/XMLHttpRequestEventTarget.idl> + enum XMLHttpRequestResponseType { "", "arraybuffer", diff --git a/Userland/Libraries/LibWeb/XHR/XMLHttpRequestEventTarget.idl b/Userland/Libraries/LibWeb/XHR/XMLHttpRequestEventTarget.idl index ed61c70bae..1bedd16034 100644 --- a/Userland/Libraries/LibWeb/XHR/XMLHttpRequestEventTarget.idl +++ b/Userland/Libraries/LibWeb/XHR/XMLHttpRequestEventTarget.idl @@ -1,3 +1,5 @@ +#import <DOM/EventTarget.idl> + interface XMLHttpRequestEventTarget : EventTarget { attribute EventHandler onloadstart; |