| OLD | NEW |
| 1 | 1 |
| 2 class WebKitAnimation native "*WebKitAnimation" { | 2 class WebKitAnimation native "*WebKitAnimation" { |
| 3 | 3 |
| 4 static final int DIRECTION_ALTERNATE = 1; |
| 5 |
| 6 static final int DIRECTION_NORMAL = 0; |
| 7 |
| 8 static final int FILL_BACKWARDS = 1; |
| 9 |
| 10 static final int FILL_BOTH = 3; |
| 11 |
| 12 static final int FILL_FORWARDS = 2; |
| 13 |
| 14 static final int FILL_NONE = 0; |
| 15 |
| 4 num delay; | 16 num delay; |
| 5 | 17 |
| 6 int direction; | 18 int direction; |
| 7 | 19 |
| 8 num duration; | 20 num duration; |
| 9 | 21 |
| 10 num elapsedTime; | 22 num elapsedTime; |
| 11 | 23 |
| 12 bool ended; | 24 bool ended; |
| 13 | 25 |
| 14 int fillMode; | 26 int fillMode; |
| 15 | 27 |
| 16 int iterationCount; | 28 int iterationCount; |
| 17 | 29 |
| 18 String name; | 30 String name; |
| 19 | 31 |
| 20 bool paused; | 32 bool paused; |
| 21 | 33 |
| 22 void pause() native; | 34 void pause() native; |
| 23 | 35 |
| 24 void play() native; | 36 void play() native; |
| 25 | 37 |
| 26 var dartObjectLocalStorage; | 38 var dartObjectLocalStorage; |
| 27 | 39 |
| 28 String get typeName() native; | 40 String get typeName() native; |
| 29 } | 41 } |
| OLD | NEW |