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

Side by Side Diff: Source/core/dom/DOMMatrix.idl

Issue 426063007: Implement basic interfaces and attributes for DOMMatrix. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add is2d test Created 6 years, 4 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
« no previous file with comments | « Source/core/dom/DOMMatrix.cpp ('k') | Source/core/dom/DOMMatrixReadOnly.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 [
6 Constructor,
7 Constructor(DOMMatrixReadOnly other),
8 // FIXME: Should implement more constructors (See: crbug.com/388780)
9 RuntimeEnabled=GeometryInterfaces,
10 ] interface DOMMatrix : DOMMatrixReadOnly {
11 // These attributes are simple aliases for certain elements of the 4x4 matri x
12 attribute unrestricted double a;
13 attribute unrestricted double b;
14 attribute unrestricted double c;
15 attribute unrestricted double d;
16 attribute unrestricted double e;
17 attribute unrestricted double f;
18
19 attribute unrestricted double m11;
20 attribute unrestricted double m12;
21 attribute unrestricted double m13;
22 attribute unrestricted double m14;
23 attribute unrestricted double m21;
24 attribute unrestricted double m22;
25 attribute unrestricted double m23;
26 attribute unrestricted double m24;
27 attribute unrestricted double m31;
28 attribute unrestricted double m32;
29 attribute unrestricted double m33;
30 attribute unrestricted double m34;
31 attribute unrestricted double m41;
32 attribute unrestricted double m42;
33 attribute unrestricted double m43;
34 attribute unrestricted double m44;
35
36 // FIXME: Should implement some methods (See: crbug.com/388780)
37 };
OLDNEW
« no previous file with comments | « Source/core/dom/DOMMatrix.cpp ('k') | Source/core/dom/DOMMatrixReadOnly.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698