summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLObjectElement.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLObjectElement.idl')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLObjectElement.idl19
1 files changed, 19 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLObjectElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLObjectElement.idl
new file mode 100644
index 0000000000..3c5790bcc5
--- /dev/null
+++ b/Userland/Libraries/LibWeb/HTML/HTMLObjectElement.idl
@@ -0,0 +1,19 @@
+interface HTMLObjectElement : HTMLElement {
+
+ [Reflect] attribute DOMString data;
+ [Reflect] attribute DOMString type;
+ [Reflect] attribute DOMString name;
+ [Reflect=usemap] attribute DOMString useMap;
+ [Reflect] attribute DOMString width;
+ [Reflect] attribute DOMString height;
+
+ [Reflect] attribute DOMString align;
+ [Reflect] attribute DOMString archive;
+ [Reflect] attribute DOMString code;
+ [Reflect] attribute boolean declare;
+ [Reflect] attribute DOMString standby;
+ [Reflect=codetype] attribute DOMString codeType;
+
+ [LegacyNullToEmptyString, Reflect] attribute DOMString border;
+
+};