HTMLBaseElement.idl 306 B

123456789101112
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/semantics.html#htmlbaseelement
  3. [Exposed=Window]
  4. interface HTMLBaseElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions] attribute USVString href;
  7. [CEReactions, Reflect] attribute DOMString target;
  8. };