浏览代码

LibWeb: Add HTMLOrSVGElement.autofocus

Luke Wilde 2 年之前
父节点
当前提交
469ef22a22
共有 1 个文件被更改,包括 1 次插入0 次删除
  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 {
     [SameObject] readonly attribute DOMStringMap dataset;
 
+    [CEReactions, Reflect] attribute boolean autofocus;
     [CEReactions] attribute long tabIndex;
 };