diff options
author | Luke Wilde <lukew@serenityos.org> | 2022-11-05 04:24:08 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-11-07 14:10:41 +0100 |
commit | 469ef22a22ed94cad843ddebc738b5f04ced1cf4 (patch) | |
tree | b0739e9d2c06ab31bc0c0afb6c8326ab236d23f6 /Userland/Libraries/LibWeb/HTML/HTMLElement.idl | |
parent | b8b263d9c3d6c8926270f10ce3f21cd3b1080d05 (diff) | |
download | serenity-469ef22a22ed94cad843ddebc738b5f04ced1cf4.zip |
LibWeb: Add HTMLOrSVGElement.autofocus
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLElement.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLElement.idl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLElement.idl index b7ce750515..3ef611ee4c 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLElement.idl @@ -33,5 +33,6 @@ HTMLElement includes HTMLOrSVGElement; interface mixin HTMLOrSVGElement { [SameObject] readonly attribute DOMStringMap dataset; + [CEReactions, Reflect] attribute boolean autofocus; [CEReactions] attribute long tabIndex; }; |