blob: 35bffbd2468bfa8b8aa47bd1f0d4216c7499bb9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/semantics.html#htmlmetaelement
[Exposed=Window]
interface HTMLMetaElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Reflect] attribute DOMString name;
[CEReactions, Reflect] attribute DOMString content;
[CEReactions, Reflect=http-equiv] attribute DOMString httpEquiv;
[CEReactions, Reflect] attribute DOMString scheme;
};
|