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
commit 17e56661db
Notes: sideshowbarker 2024-07-18 03:09:03 +09:00

View file

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