LibWeb: Implement HTMLStyleElement.sheet

This commit is contained in:
Luke Wilde 2021-10-01 00:13:56 +01:00 committed by Linus Groh
commit 10d4f2fc1e
Notes: sideshowbarker 2024-07-18 03:16:44 +09:00
3 changed files with 12 additions and 0 deletions

View file

@ -4,4 +4,7 @@ interface HTMLStyleElement : HTMLElement {
[Reflect] attribute DOMString type;
// FIXME: This should come from a LinkStyle mixin
readonly attribute CSSStyleSheet? sheet;
};