mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
11 lines
415 B
Text
11 lines
415 B
Text
// https://html.spec.whatwg.org/#htmlorsvgelement
|
|
interface mixin HTMLOrSVGElement {
|
|
[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();
|
|
};
|