HTMLOrSVGElement.idl 415 B

1234567891011
  1. // https://html.spec.whatwg.org/#htmlorsvgelement
  2. interface mixin HTMLOrSVGElement {
  3. [SameObject] readonly attribute DOMStringMap dataset;
  4. attribute DOMString nonce; // intentionally no [CEReactions]
  5. [CEReactions, Reflect] attribute boolean autofocus;
  6. [CEReactions] attribute long tabIndex;
  7. // FIXME: Support the optional FocusOptions parameter.
  8. undefined focus();
  9. undefined blur();
  10. };