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

Side by Side Diff: client/html/generated/src/interface/Animation.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 interface Animation { 7 interface Animation {
8 8
9 static final int DIRECTION_ALTERNATE = 1;
10
11 static final int DIRECTION_NORMAL = 0;
12
13 static final int FILL_BACKWARDS = 1;
14
15 static final int FILL_BOTH = 3;
16
17 static final int FILL_FORWARDS = 2;
18
19 static final int FILL_NONE = 0;
20
21 num get delay(); 9 num get delay();
22 10
23 int get direction(); 11 int get direction();
24 12
25 num get duration(); 13 num get duration();
26 14
27 num get elapsedTime(); 15 num get elapsedTime();
28 16
29 void set elapsedTime(num value); 17 void set elapsedTime(num value);
30 18
31 bool get ended(); 19 bool get ended();
32 20
33 int get fillMode(); 21 int get fillMode();
34 22
35 int get iterationCount(); 23 int get iterationCount();
36 24
37 String get name(); 25 String get name();
38 26
39 bool get paused(); 27 bool get paused();
40 28
41 void pause(); 29 void pause();
42 30
43 void play(); 31 void play();
44 } 32 }
OLDNEW
« no previous file with comments | « client/html/generated/src/interface/AnchorElement.dart ('k') | client/html/generated/src/interface/ArrayBuffer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698