1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:57:45 +00:00

LibWeb: Have CSSStyleRule inherit from CSSRule in IDL

This also allows removing the cssText attribute being on CSSStyleRule.
This commit is contained in:
Luke Wilde 2021-10-03 15:18:08 +01:00 committed by Andreas Kling
parent fc2ed732df
commit 17e56661db

View file

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