Fix search results being clipped in app list.
[chromium-blink-merge.git] / ui / file_manager / externs / css_rule.js
blob4dfaacdf8a6a1ebd9b3f3960bc85e49a8c33d5e4
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.
5 /**
6  * @constructor
7  * @extends {CSSRule}
8  * @see http://dev.w3.org/csswg/css-animations/#interface-csskeyframerule
9  */
10 function CSSKeyframeRule() {}
12 /** @type {string} */
13 CSSKeyframeRule.prototype.keyText;
15 /** @type {CSSStyleDeclaration} */
16 CSSKeyframeRule.prototype.style;
19 /**
20  * @constructor
21  * @extends {CSSRule}
22  * @see http://dev.w3.org/csswg/css-animations/#interface-csskeyframesrule
23  */
24 function CSSKeyframesRule() {}
26 /** @type {string} */
27 CSSKeyframesRule.prototype.name;
29 /** @type {!CSSRuleList} */
30 CSSKeyframesRule.prototype.cssRules;
33 /**
34  * @type {number}
35  * @see http://dev.w3.org/csswg/css-animations/#interface-cssrule
36  */
37 CSSRule.KEYFRAMES_RULE = 7;
39 /**
40  * @type {number}
41  */
42 CSSRule.WEBKIT_KEYFRAMES_RULE = 7;
44 /**
45  * @type {number}
46  * @see http://dev.w3.org/csswg/css-animations/#interface-cssrule
47  */
48 CSSRule.KEYFRAME_RULE = 8;
50 /**
51  * @type {number}
52  */
53 CSSRule.WEBKIT_KEYFRAME_RULE = 8;