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