HTMLOrSVGElement.idl 448 B

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