| Index: client/dom/generated/src/frog/WebKitAnimation.dart
|
| diff --git a/client/dom/generated/src/frog/WebKitAnimation.dart b/client/dom/generated/src/frog/WebKitAnimation.dart
|
| index bc5e79c7861488a2b1eaeb32a41b4bbed61576bd..35c646816d64cc2b40195e084d5c6ce87fc564c1 100644
|
| --- a/client/dom/generated/src/frog/WebKitAnimation.dart
|
| +++ b/client/dom/generated/src/frog/WebKitAnimation.dart
|
| @@ -13,23 +13,25 @@ class WebKitAnimation native "*WebKitAnimation" {
|
|
|
| static final int FILL_NONE = 0;
|
|
|
| - num delay;
|
| + num get delay() native "return this.delay;";
|
|
|
| - int direction;
|
| + int get direction() native "return this.direction;";
|
|
|
| - num duration;
|
| + num get duration() native "return this.duration;";
|
|
|
| - num elapsedTime;
|
| + num get elapsedTime() native "return this.elapsedTime;";
|
|
|
| - bool ended;
|
| + void set elapsedTime(num value) native "this.elapsedTime = value;";
|
|
|
| - int fillMode;
|
| + bool get ended() native "return this.ended;";
|
|
|
| - int iterationCount;
|
| + int get fillMode() native "return this.fillMode;";
|
|
|
| - String name;
|
| + int get iterationCount() native "return this.iterationCount;";
|
|
|
| - bool paused;
|
| + String get name() native "return this.name;";
|
| +
|
| + bool get paused() native "return this.paused;";
|
|
|
| void pause() native;
|
|
|
|
|