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

Side by Side Diff: lib/html/doc/interface/CSSTransformValue.dartdoc

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:
6 // This file contains documentation that is merged into the real source.
7 // Do not make code changes here.
8
9 /// @domName WebKitCSSTransformValue
10 interface CSSTransformValue extends CSSValueList {
11
12 static final int CSS_MATRIX = 11;
13
14 static final int CSS_MATRIX3D = 21;
15
16 static final int CSS_PERSPECTIVE = 20;
17
18 static final int CSS_ROTATE = 4;
19
20 static final int CSS_ROTATE3D = 17;
21
22 static final int CSS_ROTATEX = 14;
23
24 static final int CSS_ROTATEY = 15;
25
26 static final int CSS_ROTATEZ = 16;
27
28 static final int CSS_SCALE = 5;
29
30 static final int CSS_SCALE3D = 19;
31
32 static final int CSS_SCALEX = 6;
33
34 static final int CSS_SCALEY = 7;
35
36 static final int CSS_SCALEZ = 18;
37
38 static final int CSS_SKEW = 8;
39
40 static final int CSS_SKEWX = 9;
41
42 static final int CSS_SKEWY = 10;
43
44 static final int CSS_TRANSLATE = 1;
45
46 static final int CSS_TRANSLATE3D = 13;
47
48 static final int CSS_TRANSLATEX = 2;
49
50 static final int CSS_TRANSLATEY = 3;
51
52 static final int CSS_TRANSLATEZ = 12;
53
54 /** @domName WebKitCSSTransformValue.operationType */
55 final int operationType;
56 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/CSSStyleSheet.dartdoc ('k') | lib/html/doc/interface/CSSUnknownRule.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698