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

Side by Side Diff: client/html/generated/html/frog/CSSTransformValue.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
2 class _CSSTransformValueImpl extends _CSSValueListImpl implements CSSTransformVa lue native "*WebKitCSSTransformValue" {
3
4 static final int CSS_MATRIX = 11;
5
6 static final int CSS_MATRIX3D = 21;
7
8 static final int CSS_PERSPECTIVE = 20;
9
10 static final int CSS_ROTATE = 4;
11
12 static final int CSS_ROTATE3D = 17;
13
14 static final int CSS_ROTATEX = 14;
15
16 static final int CSS_ROTATEY = 15;
17
18 static final int CSS_ROTATEZ = 16;
19
20 static final int CSS_SCALE = 5;
21
22 static final int CSS_SCALE3D = 19;
23
24 static final int CSS_SCALEX = 6;
25
26 static final int CSS_SCALEY = 7;
27
28 static final int CSS_SCALEZ = 18;
29
30 static final int CSS_SKEW = 8;
31
32 static final int CSS_SKEWX = 9;
33
34 static final int CSS_SKEWY = 10;
35
36 static final int CSS_TRANSLATE = 1;
37
38 static final int CSS_TRANSLATE3D = 13;
39
40 static final int CSS_TRANSLATEX = 2;
41
42 static final int CSS_TRANSLATEY = 3;
43
44 static final int CSS_TRANSLATEZ = 12;
45
46 final int operationType;
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698