mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-17 15:25:35 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
15 lines
479 B
Text
15 lines
479 B
Text
// 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;
|
|
|
|
};
|