HTMLMetaElement.idl 512 B

1234567891011121314151617
  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=http-equiv] attribute DOMString httpEquiv;
  8. [CEReactions, Reflect] attribute DOMString content;
  9. // FIXME: [CEReactions] attribute DOMString media;
  10. // Obsolete
  11. [CEReactions, Reflect] attribute DOMString scheme;
  12. };