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

Side by Side Diff: client/html/generated/html/frog/CSSMatrix.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 _CSSMatrixImpl implements CSSMatrix native "*WebKitCSSMatrix" {
3
4 num a;
5
6 num b;
7
8 num c;
9
10 num d;
11
12 num e;
13
14 num f;
15
16 num m11;
17
18 num m12;
19
20 num m13;
21
22 num m14;
23
24 num m21;
25
26 num m22;
27
28 num m23;
29
30 num m24;
31
32 num m31;
33
34 num m32;
35
36 num m33;
37
38 num m34;
39
40 num m41;
41
42 num m42;
43
44 num m43;
45
46 num m44;
47
48 _CSSMatrixImpl inverse() native;
49
50 _CSSMatrixImpl multiply(_CSSMatrixImpl secondMatrix) native;
51
52 _CSSMatrixImpl rotate(num rotX, num rotY, num rotZ) native;
53
54 _CSSMatrixImpl rotateAxisAngle(num x, num y, num z, num angle) native;
55
56 _CSSMatrixImpl scale(num scaleX, num scaleY, num scaleZ) native;
57
58 void setMatrixValue(String string) native;
59
60 _CSSMatrixImpl skewX(num angle) native;
61
62 _CSSMatrixImpl skewY(num angle) native;
63
64 String toString() native;
65
66 _CSSMatrixImpl translate(num x, num y, num z) native;
67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698