2022-02-15 16:10:51 -03:00
|
|
|
#import <CSS/CSSStyleSheet.idl>
|
2022-07-27 16:30:32 -03:00
|
|
|
#import <CSS/LinkStyle.idl>
|
2022-02-15 16:10:51 -03:00
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
|
|
2022-07-27 16:30:32 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/semantics.html#htmlstyleelement
|
2023-09-02 10:09:33 -03:00
|
|
|
[Exposed=Window]
|
2020-07-27 01:04:26 -03:00
|
|
|
interface HTMLStyleElement : HTMLElement {
|
2023-03-23 04:48:52 -03:00
|
|
|
[HTMLConstructor] constructor();
|
2020-07-27 01:04:26 -03:00
|
|
|
|
2024-06-22 07:12:44 -03:00
|
|
|
attribute boolean disabled;
|
2023-02-28 22:45:18 -03:00
|
|
|
[Reflect, CEReactions] attribute DOMString media;
|
2024-05-19 10:15:49 -03:00
|
|
|
[FIXME, SameObject, PutForwards=value] readonly attribute DOMTokenList blocking;
|
2020-07-27 01:04:26 -03:00
|
|
|
|
2022-07-27 16:30:32 -03:00
|
|
|
// Obsolete
|
2020-11-12 01:16:41 -03:00
|
|
|
[Reflect] attribute DOMString type;
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|
2022-07-27 16:30:32 -03:00
|
|
|
|
|
|
|
|
HTMLStyleElement includes LinkStyle;
|