8 lines
280 B
Text
8 lines
280 B
Text
#import <CSS/CSSRule.idl>
|
|
|
|
// https://drafts.csswg.org/css-animations-1/#interface-csskeyframerule-idl
|
|
[Exposed=Window]
|
|
interface CSSKeyframeRule : CSSRule {
|
|
attribute CSSOMString keyText;
|
|
[SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
|
|
};
|