ladybird/Userland/Libraries/LibWeb/HTML/HTMLMetaElement.idl

14 lines
351 B
Plaintext
Raw Normal View History

#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;
};