#import <HTML/HTMLElement.idl>

// https://html.spec.whatwg.org/multipage/semantics.html#htmlmetaelement
[Exposed=Window]
interface HTMLMetaElement : HTMLElement {

    [Reflect] attribute DOMString name;
    [Reflect] attribute DOMString content;
    [Reflect=http-equiv] attribute DOMString httpEquiv;

    [Reflect] attribute DOMString scheme;

};