LibWeb: Implement CSSKeyframesRule.cssRuleList

To make this straightforward, CSSKeyframesRule now uses a CSSRuleList
for internal storage.
This commit is contained in:
Andreas Kling 2024-06-14 17:04:56 +02:00 committed by Andreas Kling
commit 7f2c833a39
Notes: sideshowbarker 2024-07-17 05:01:20 +09:00
8 changed files with 50 additions and 22 deletions

View file

@ -5,7 +5,7 @@
[Exposed=Window]
interface CSSKeyframesRule : CSSRule {
attribute CSSOMString name;
[FIXME] readonly attribute CSSRuleList cssRules;
readonly attribute CSSRuleList cssRules;
readonly attribute unsigned long length;
getter CSSKeyframeRule (unsigned long index);