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

Side by Side Diff: lib/html/doc/interface/Animation.dart

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 | Annotate | Revision Log
OLDNEW
(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 WebKitAnimation
8 interface Animation {
9
10 static final int DIRECTION_ALTERNATE = 1;
11
12 static final int DIRECTION_NORMAL = 0;
13
14 static final int FILL_BACKWARDS = 1;
15
16 static final int FILL_BOTH = 3;
17
18 static final int FILL_FORWARDS = 2;
19
20 static final int FILL_NONE = 0;
21
22 /** @domName WebKitAnimation.delay */
23 final num delay;
24
25 /** @domName WebKitAnimation.direction */
26 final int direction;
27
28 /** @domName WebKitAnimation.duration */
29 final num duration;
30
31 /** @domName WebKitAnimation.elapsedTime */
32 num elapsedTime;
33
34 /** @domName WebKitAnimation.ended */
35 final bool ended;
36
37 /** @domName WebKitAnimation.fillMode */
38 final int fillMode;
39
40 /** @domName WebKitAnimation.iterationCount */
41 final int iterationCount;
42
43 /** @domName WebKitAnimation.name */
44 final String name;
45
46 /** @domName WebKitAnimation.paused */
47 final bool paused;
48
49 /** @domName WebKitAnimation.pause */
50 void pause();
51
52 /** @domName WebKitAnimation.play */
53 void play();
54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698