2025-02-04 09:01:46 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/dom.html#htmlorsvgelement
|
2026-05-06 10:02:59 -03:00
|
|
|
interface mixin HTMLOrSVGOrMathMLElement {
|
2024-10-29 07:07:02 -03:00
|
|
|
[SameObject] readonly attribute DOMStringMap dataset;
|
2024-10-29 09:27:01 -03:00
|
|
|
attribute DOMString nonce; // intentionally no [CEReactions]
|
2024-10-29 07:07:02 -03:00
|
|
|
|
|
|
|
|
[CEReactions, Reflect] attribute boolean autofocus;
|
|
|
|
|
[CEReactions] attribute long tabIndex;
|
|
|
|
|
// FIXME: Support the optional FocusOptions parameter.
|
|
|
|
|
undefined focus();
|
|
|
|
|
undefined blur();
|
|
|
|
|
};
|