summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl14
1 files changed, 14 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl
new file mode 100644
index 0000000000..d0d4330a9a
--- /dev/null
+++ b/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl
@@ -0,0 +1,14 @@
+interface HTMLImageElement : HTMLElement {
+
+ [Reflect] attribute DOMString src;
+ [Reflect] attribute DOMString alt;
+ [Reflect] attribute DOMString srcset;
+ [Reflect] attribute DOMString sizes;
+ [Reflect=usemap] attribute DOMString useMap;
+ [Reflect=ismap] attribute boolean isMap;
+
+ [Reflect] attribute DOMString name;
+ [Reflect] attribute DOMString align;
+ [LegacyNullToEmptyString, Reflect] attribute DOMString border;
+
+};