ladybird/Userland/Libraries/LibWeb/CSS/CSSKeyframesRule.idl
Shannon Booth 4fe0cbcf85 LibWeb: Use 'FIXME' extended attribute where possible
This improves the debuggability of many live web pages :^)
2024-05-19 16:24:11 +02:00

16 lines
539 B
Plaintext

#import <CSS/CSSRule.idl>
#import <CSS/CSSKeyframeRule.idl>
// https://drafts.csswg.org/css-animations-1/#interface-csskeyframesrule
[Exposed=Window]
interface CSSKeyframesRule : CSSRule {
attribute CSSOMString name;
[FIXME] readonly attribute CSSRuleList cssRules;
readonly attribute unsigned long length;
getter CSSKeyframeRule (unsigned long index);
[FIXME] undefined appendRule(CSSOMString rule);
[FIXME] undefined deleteRule(CSSOMString select);
[FIXME] CSSKeyframeRule? findRule(CSSOMString select);
};