2023-05-26 23:30:54 +03:30
|
|
|
#import <CSS/CSSRule.idl>
|
|
|
|
|
2023-09-03 02:00:01 +12:00
|
|
|
[Exposed=Window]
|
2023-05-26 23:30:54 +03:30
|
|
|
interface CSSKeyframesRule : CSSRule {
|
|
|
|
attribute CSSOMString name;
|
|
|
|
readonly attribute unsigned long length;
|
|
|
|
|
2023-06-20 16:30:06 +01:00
|
|
|
// FIXME: Implement this
|
|
|
|
// readonly attribute CSSRuleList cssRules;
|
|
|
|
|
2023-05-26 23:30:54 +03:30
|
|
|
getter CSSKeyframeRule (unsigned long index);
|
2023-06-20 16:30:06 +01:00
|
|
|
|
|
|
|
// FIXME: Implement these
|
|
|
|
// undefined appendRule(CSSOMString rule);
|
|
|
|
// undefined deleteRule(CSSOMString select);
|
|
|
|
// CSSKeyframeRule? findRule(CSSOMString select);
|
2023-05-26 23:30:54 +03:30
|
|
|
};
|