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