summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLStyleElement.idl
blob: bab3c4d8ab8e5a9cba6b13fc0fdaa9c62998e831 (plain)
1
2
3
4
5
6
7
8
9
10
interface HTMLStyleElement : HTMLElement {

    [Reflect] attribute DOMString media;

    [Reflect] attribute DOMString type;

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

};