2023-05-26 17:00:54 -03:00
|
|
|
#import <CSS/CSSRule.idl>
|
2023-11-08 15:04:56 -03:00
|
|
|
#import <CSS/CSSKeyframeRule.idl>
|
2023-05-26 17:00:54 -03:00
|
|
|
|
2023-10-25 12:27:19 -03:00
|
|
|
// https://drafts.csswg.org/css-animations-1/#interface-csskeyframesrule
|
2023-09-02 11:00:01 -03:00
|
|
|
[Exposed=Window]
|
2023-05-26 17:00:54 -03:00
|
|
|
interface CSSKeyframesRule : CSSRule {
|
|
|
|
|
attribute CSSOMString name;
|
2024-06-14 12:04:56 -03:00
|
|
|
readonly attribute CSSRuleList cssRules;
|
2023-05-26 17:00:54 -03:00
|
|
|
readonly attribute unsigned long length;
|
|
|
|
|
|
|
|
|
|
getter CSSKeyframeRule (unsigned long index);
|
2024-05-19 07:15:54 -03:00
|
|
|
[FIXME] undefined appendRule(CSSOMString rule);
|
|
|
|
|
[FIXME] undefined deleteRule(CSSOMString select);
|
|
|
|
|
[FIXME] CSSKeyframeRule? findRule(CSSOMString select);
|
2023-05-26 17:00:54 -03:00
|
|
|
};
|