1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

LibWeb: Implement StyleSheet.ownerNode :^)

This commit is contained in:
Andreas Kling 2021-03-08 13:40:53 +01:00
parent 183b2e71ba
commit d07fcba69b
5 changed files with 32 additions and 7 deletions

View file

@ -1,9 +1,12 @@
interface StyleSheet {
readonly attribute Element? ownerNode;
// readonly attribute CSSOMString type;
// readonly attribute USVString? href;
// readonly attribute (Element or ProcessingInstruction)? ownerNode;
// readonly attribute CSSStyleSheet? parentStyleSheet;
// readonly attribute DOMString? title;
// [SameObject, PutForwards=mediaText] readonly attribute MediaList media;
// attribute boolean disabled;
};