mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 01:32:14 -05:00
15 lines
531 B
Text
15 lines
531 B
Text
#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;
|
|
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);
|
|
};
|