mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-23 01:39:55 +00:00
14 lines
294 B
Plaintext
14 lines
294 B
Plaintext
#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;
|
|
|
|
};
|