| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @constructor | 6 * @constructor |
| 7 * @extends {CSSRule} | 7 * @extends {CSSRule} |
| 8 * @see http://dev.w3.org/csswg/css-animations/#interface-csskeyframerule | 8 * @see http://dev.w3.org/csswg/css-animations/#interface-csskeyframerule |
| 9 */ | 9 */ |
| 10 function CSSKeyframeRule() {} | 10 function CSSKeyframeRule() {} |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 /** @type {!CSSRuleList} */ | 29 /** @type {!CSSRuleList} */ |
| 30 CSSKeyframesRule.prototype.cssRules; | 30 CSSKeyframesRule.prototype.cssRules; |
| 31 | 31 |
| 32 | 32 |
| 33 /** | 33 /** |
| 34 * @type {number} | 34 * @type {number} |
| 35 * @see http://dev.w3.org/csswg/css-animations/#interface-cssrule | 35 * @see http://dev.w3.org/csswg/css-animations/#interface-cssrule |
| 36 */ | 36 */ |
| 37 CSSRule.KEYFRAMES_RULE = 7; | 37 CSSRule.KEYFRAMES_RULE = 7; |
| 38 | 38 |
| 39 /** | |
| 40 * @type {number} | |
| 41 */ | |
| 42 CSSRule.WEBKIT_KEYFRAMES_RULE = 7; | |
| 43 | 39 |
| 44 /** | 40 /** |
| 45 * @type {number} | 41 * @type {number} |
| 46 * @see http://dev.w3.org/csswg/css-animations/#interface-cssrule | 42 * @see http://dev.w3.org/csswg/css-animations/#interface-cssrule |
| 47 */ | 43 */ |
| 48 CSSRule.KEYFRAME_RULE = 8; | 44 CSSRule.KEYFRAME_RULE = 8; |
| 49 | |
| 50 /** | |
| 51 * @type {number} | |
| 52 */ | |
| 53 CSSRule.WEBKIT_KEYFRAME_RULE = 8; | |
| OLD | NEW |