summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLStyleElement.idl
blob: c33e8be66d713581ae4cb8abfe83f992ac72009c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import <CSS/CSSStyleSheet.idl>
#import <CSS/LinkStyle.idl>
#import <HTML/HTMLElement.idl>

// https://html.spec.whatwg.org/multipage/semantics.html#htmlstyleelement
interface HTMLStyleElement : HTMLElement {
    // FIXME: [HTMLConstructor] constructor();

    // FIXME: attribute boolean disabled;
    [Reflect] attribute DOMString media;
    // FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList blocking;

    // Obsolete
    [Reflect] attribute DOMString type;
};

HTMLStyleElement includes LinkStyle;