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/IntersectionObserver/IntersectionObserver.idl | |
parent | eccdf4eb4bd30f789ca6bb810557e86a36400d62 (diff) | |
download | serenity-a59800b4a0b0bb0b93f8b54254b46e23c1cc0ec7.zip |
LibWeb: Add imports to all IDL files that depend on others
Diffstat (limited to 'Userland/Libraries/LibWeb/IntersectionObserver/IntersectionObserver.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/IntersectionObserver/IntersectionObserver.idl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/IntersectionObserver/IntersectionObserver.idl b/Userland/Libraries/LibWeb/IntersectionObserver/IntersectionObserver.idl index 651a9fce17..c5d2a4bbfc 100644 --- a/Userland/Libraries/LibWeb/IntersectionObserver/IntersectionObserver.idl +++ b/Userland/Libraries/LibWeb/IntersectionObserver/IntersectionObserver.idl @@ -1,3 +1,6 @@ +#import <DOM/Element.idl> +#import <DOM/Node.idl> + [Exposed=(Window)] interface IntersectionObserver { // FIXME: Should be: IntersectionObserverCallback |