1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
8 * @see http://dev.w3.org/csswg/css-animations/#interface-csskeyframerule
10 function CSSKeyframeRule() {}
13 CSSKeyframeRule.prototype.keyText;
15 /** @type {CSSStyleDeclaration} */
16 CSSKeyframeRule.prototype.style;
22 * @see http://dev.w3.org/csswg/css-animations/#interface-csskeyframesrule
24 function CSSKeyframesRule() {}
27 CSSKeyframesRule.prototype.name;
29 /** @type {!CSSRuleList} */
30 CSSKeyframesRule.prototype.cssRules;
35 * @see http://dev.w3.org/csswg/css-animations/#interface-cssrule
37 CSSRule.KEYFRAMES_RULE = 7;
42 CSSRule.WEBKIT_KEYFRAMES_RULE = 7;
46 * @see http://dev.w3.org/csswg/css-animations/#interface-cssrule
48 CSSRule.KEYFRAME_RULE = 8;
53 CSSRule.WEBKIT_KEYFRAME_RULE = 8;