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

Side by Side Diff: client/html/generated/html/interface/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 // 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 interface CSSTransformValue extends CSSValueList {
8
9 static final int CSS_MATRIX = 11;
10
11 static final int CSS_MATRIX3D = 21;
12
13 static final int CSS_PERSPECTIVE = 20;
14
15 static final int CSS_ROTATE = 4;
16
17 static final int CSS_ROTATE3D = 17;
18
19 static final int CSS_ROTATEX = 14;
20
21 static final int CSS_ROTATEY = 15;
22
23 static final int CSS_ROTATEZ = 16;
24
25 static final int CSS_SCALE = 5;
26
27 static final int CSS_SCALE3D = 19;
28
29 static final int CSS_SCALEX = 6;
30
31 static final int CSS_SCALEY = 7;
32
33 static final int CSS_SCALEZ = 18;
34
35 static final int CSS_SKEW = 8;
36
37 static final int CSS_SKEWX = 9;
38
39 static final int CSS_SKEWY = 10;
40
41 static final int CSS_TRANSLATE = 1;
42
43 static final int CSS_TRANSLATE3D = 13;
44
45 static final int CSS_TRANSLATEX = 2;
46
47 static final int CSS_TRANSLATEY = 3;
48
49 static final int CSS_TRANSLATEZ = 12;
50
51 final int operationType;
52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698