diff options
author | Srikavin Ramkumar <srikavinramkumar@gmail.com> | 2023-03-23 03:48:52 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-03-23 13:37:40 +0100 |
commit | 5c8be3b0721e2f5a8991c0cd6dd4dae34fd650d3 (patch) | |
tree | 927e7cf1a86f268843a2196d07e93c00981c1823 /Userland/Libraries/LibWeb/HTML/HTMLMenuElement.idl | |
parent | daf421846c83ab1f748b33b52b1de1149d41c43c (diff) | |
download | serenity-5c8be3b0721e2f5a8991c0cd6dd4dae34fd650d3.zip |
LibWeb: Add missing constructors to HTMLElement IDLs
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLMenuElement.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLMenuElement.idl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLMenuElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLMenuElement.idl index 77c167998e..82ecd13687 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLMenuElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLMenuElement.idl @@ -4,6 +4,8 @@ [Exposed=Window] interface HTMLMenuElement : HTMLElement { + [HTMLConstructor] constructor(); + [Reflect] attribute boolean compact; }; |