mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
15 lines
441 B
Plaintext
15 lines
441 B
Plaintext
// https://html.spec.whatwg.org/multipage/semantics.html#htmlstyleelement
|
|
[Exposed=Window]
|
|
interface HTMLStyleElement : HTMLElement {
|
|
[HTMLConstructor] constructor();
|
|
|
|
attribute boolean disabled;
|
|
[CEReactions, Reflect] attribute DOMString media;
|
|
[FIXME, SameObject, PutForwards=value] readonly attribute DOMTokenList blocking;
|
|
|
|
// Obsolete
|
|
[Reflect] attribute DOMString type;
|
|
};
|
|
|
|
HTMLStyleElement includes LinkStyle;
|