HTMLMetaElement.idl 441 B

123456789101112131415
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/semantics.html#htmlmetaelement
  3. [Exposed=Window]
  4. interface HTMLMetaElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions, Reflect] attribute DOMString name;
  7. [CEReactions, Reflect] attribute DOMString content;
  8. [CEReactions, Reflect=http-equiv] attribute DOMString httpEquiv;
  9. [CEReactions, Reflect] attribute DOMString scheme;
  10. };