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

interface HTMLStyleElement : HTMLElement {

    [Reflect] attribute DOMString media;

    [Reflect] attribute DOMString type;

    // FIXME: This should come from a LinkStyle mixin
    readonly attribute CSSStyleSheet? sheet;

};