15 lines
389 B
Text
15 lines
389 B
Text
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/semantics.html#htmlmetaelement
|
|
[Exposed=Window]
|
|
interface HTMLMetaElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[Reflect] attribute DOMString name;
|
|
[Reflect] attribute DOMString content;
|
|
[Reflect=http-equiv] attribute DOMString httpEquiv;
|
|
|
|
[Reflect] attribute DOMString scheme;
|
|
|
|
};
|