1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:07:46 +00:00

LibWeb: Add CSSGroupingRule

This is an abstract base class for CSSRules that hold a CSSRuleList.
This commit is contained in:
Sam Atkins 2021-09-28 16:20:32 +01:00 committed by Andreas Kling
parent eb83d2617c
commit 06f9395056
4 changed files with 74 additions and 0 deletions

View file

@ -0,0 +1,6 @@
interface CSSGroupingRule : CSSRule {
[SameObject] readonly attribute CSSRuleList cssRules;
unsigned long insertRule(CSSOMString rule, optional unsigned long index = 0);
undefined deleteRule(unsigned long index);
};