Browse Source

LibWeb: Add HTMLOrSVGElement.autofocus

Luke Wilde 2 years ago
parent
commit
469ef22a22
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Userland/Libraries/LibWeb/HTML/HTMLElement.idl

+ 1 - 0
Userland/Libraries/LibWeb/HTML/HTMLElement.idl

@@ -33,5 +33,6 @@ HTMLElement includes HTMLOrSVGElement;
 interface mixin HTMLOrSVGElement {
 interface mixin HTMLOrSVGElement {
     [SameObject] readonly attribute DOMStringMap dataset;
     [SameObject] readonly attribute DOMStringMap dataset;
 
 
+    [CEReactions, Reflect] attribute boolean autofocus;
     [CEReactions] attribute long tabIndex;
     [CEReactions] attribute long tabIndex;
 };
 };