Files
ladybird/Libraries/LibWeb/HTML/HTMLOrSVGOrMathMLElement.idl
2026-05-06 17:42:36 +01:00

12 lines
441 B
Plaintext

// https://html.spec.whatwg.org/multipage/dom.html#htmlorsvgelement
interface mixin HTMLOrSVGOrMathMLElement {
[SameObject] readonly attribute DOMStringMap dataset;
attribute DOMString nonce; // intentionally no [CEReactions]
[CEReactions, Reflect] attribute boolean autofocus;
[CEReactions] attribute long tabIndex;
// FIXME: Support the optional FocusOptions parameter.
undefined focus();
undefined blur();
};