1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:37:35 +00:00

LibWeb: Add HTMLOrSVGElement.autofocus

This commit is contained in:
Luke Wilde 2022-11-05 04:24:08 +00:00 committed by Andreas Kling
parent b8b263d9c3
commit 469ef22a22

View file

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