| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 /// @domName WebKitCSSKeyframesRule |
| 8 interface CSSKeyframesRule extends CSSRule { |
| 9 |
| 10 /** @domName WebKitCSSKeyframesRule.cssRules */ |
| 11 final CSSRuleList cssRules; |
| 12 |
| 13 /** @domName WebKitCSSKeyframesRule.name */ |
| 14 String name; |
| 15 |
| 16 /** @domName WebKitCSSKeyframesRule.deleteRule */ |
| 17 void deleteRule(String key); |
| 18 |
| 19 /** @domName WebKitCSSKeyframesRule.findRule */ |
| 20 CSSKeyframeRule findRule(String key); |
| 21 |
| 22 /** @domName WebKitCSSKeyframesRule.insertRule */ |
| 23 void insertRule(String rule); |
| 24 } |
| OLD | NEW |