WebIDLpedia

HTMLMetaElement interface

Definition

HTML Standard defines HTMLMetaElement



[Exposed=Window]
interface HTMLMetaElement : HTMLElement {
  [HTMLConstructor] constructor();

  [CEReactions] attribute DOMString name;
  [CEReactions] attribute DOMString httpEquiv;
  [CEReactions] attribute DOMString content;
  [CEReactions] attribute DOMString media;

  // also has obsolete members
};

partial interface HTMLMetaElement {
  [CEReactions] attribute DOMString scheme;
};
Consolidated IDL (across mixin and partials)


[Exposed=Window]
interface HTMLMetaElement : HTMLElement {
  [HTMLConstructor] constructor();

  [CEReactions] attribute DOMString name;
  [CEReactions] attribute DOMString httpEquiv;
  [CEReactions] attribute DOMString content;
  [CEReactions] attribute DOMString media;
  [CEReactions] attribute DOMString scheme;

  // also has obsolete members
};

Methods and attributes that return objects implementing HTMLMetaElement