Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(411)

Side by Side Diff: ui/file_manager/externs/css_rule.js

Issue 2795223002: Remove WEBKIT_KEYFRAMES_RULE and WEBKIT_KEYFRAME_RULE (Closed)
Patch Set: changes in ui/filemanager/ Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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;
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSRule.idl ('k') | ui/file_manager/file_manager/foreground/js/ui/progress_center_panel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698