HTMLMetaElement.idl 351 B

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