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
|
2020-07-27 01:04:26 -03:00
|
|
|
interface HTMLStyleElement : HTMLElement {
|
2022-07-27 16:30:32 -03:00
|
|
|
// FIXME: [HTMLConstructor] constructor();
|
2020-07-27 01:04:26 -03:00
|
|
|
|
2022-07-27 16:30:32 -03:00
|
|
|
// FIXME: attribute boolean disabled;
|
2020-07-27 01:04:26 -03:00
|
|
|
[Reflect] attribute DOMString media;
|
2022-07-27 16:30:32 -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;
|