summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-02-25 18:42:37 +0100
committerAndreas Kling <kling@serenityos.org>2022-02-25 19:38:31 +0100
commit17f34488f6629d07476f4bc191276df0b10d541e (patch)
tree7da48d505c338e4237b73f2d844b746235e25914 /Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl
parentb023308f5c2f2c72ff83da9ec75e623919674623 (diff)
downloadserenity-17f34488f6629d07476f4bc191276df0b10d541e.zip
LibWeb: Implement HTMLImageElement.width and HTMLImageElement.height
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl3
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl
index 5e8d6f508d..f805d45036 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl
+++ b/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl
@@ -13,4 +13,7 @@ interface HTMLImageElement : HTMLElement {
[Reflect] attribute DOMString align;
[LegacyNullToEmptyString, Reflect] attribute DOMString border;
+ [CEReactions] attribute unsigned long width;
+ [CEReactions] attribute unsigned long height;
+
};