summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLEmbedElement.idl
diff options
context:
space:
mode:
authorSrikavin Ramkumar <srikavinramkumar@gmail.com>2023-03-23 03:48:52 -0400
committerAndreas Kling <kling@serenityos.org>2023-03-23 13:37:40 +0100
commit5c8be3b0721e2f5a8991c0cd6dd4dae34fd650d3 (patch)
tree927e7cf1a86f268843a2196d07e93c00981c1823 /Userland/Libraries/LibWeb/HTML/HTMLEmbedElement.idl
parentdaf421846c83ab1f748b33b52b1de1149d41c43c (diff)
downloadserenity-5c8be3b0721e2f5a8991c0cd6dd4dae34fd650d3.zip
LibWeb: Add missing constructors to HTMLElement IDLs
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLEmbedElement.idl')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLEmbedElement.idl2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLEmbedElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLEmbedElement.idl
index 45bc6a75f3..eb75d3f6f2 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLEmbedElement.idl
+++ b/Userland/Libraries/LibWeb/HTML/HTMLEmbedElement.idl
@@ -4,6 +4,8 @@
[Exposed=Window]
interface HTMLEmbedElement : HTMLElement {
+ [HTMLConstructor] constructor();
+
[Reflect] attribute DOMString src;
[Reflect] attribute DOMString type;
[Reflect] attribute DOMString width;