mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-03 17:58:49 +00:00
There are two FIXMEs remaining that depend on a functional PolicyContainer, which we ignore for now and always behave like a CSP is set.
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();
|
|
};
|