mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
16 lines
479 B
Plaintext
16 lines
479 B
Plaintext
// https://html.spec.whatwg.org/multipage/semantics.html#htmlmetaelement
|
|
[Exposed=Window]
|
|
interface HTMLMetaElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions, Reflect] attribute DOMString name;
|
|
[CEReactions, Reflect=http-equiv] attribute DOMString httpEquiv;
|
|
[CEReactions, Reflect] attribute DOMString content;
|
|
[CEReactions, Reflect] attribute DOMString media;
|
|
|
|
// Obsolete
|
|
[CEReactions, Reflect] attribute DOMString scheme;
|
|
|
|
};
|