1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 15:37:47 +00:00

LibWeb: Add the CSSStyleRule interface with some limited functionality

This commit is contained in:
Andreas Kling 2021-09-29 23:43:18 +02:00
parent 71087422f6
commit 6cda24097b
8 changed files with 84 additions and 1 deletions

View file

@ -0,0 +1,6 @@
interface CSSStyleRule {
attribute CSSOMString selectorText;
[SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
};