blob: 90e9b8f654c0c10b333e8d2acc11046a6fcfb23f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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;
};
|