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

Side by Side Diff: third_party/WebKit/Source/core/geometry/DOMMatrixInit.idl

Issue 2741723005: Move geometry interface files to geometry directory. (Closed)
Patch Set: Rebase Created 3 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // https://drafts.fxtf.org/geometry/#dictdef-dommatrixinit 5 // https://drafts.fxtf.org/geometry/#dictdef-dommatrixinit
6 6
7 dictionary DOMMatrixInit { 7 dictionary DOMMatrixInit {
8 unrestricted double a; 8 unrestricted double a;
9 unrestricted double b; 9 unrestricted double b;
10 unrestricted double c; 10 unrestricted double c;
(...skipping 11 matching lines...) Expand all
22 unrestricted double m31 = 0; 22 unrestricted double m31 = 0;
23 unrestricted double m32 = 0; 23 unrestricted double m32 = 0;
24 unrestricted double m33 = 1; 24 unrestricted double m33 = 1;
25 unrestricted double m34 = 0; 25 unrestricted double m34 = 0;
26 unrestricted double m41; 26 unrestricted double m41;
27 unrestricted double m42; 27 unrestricted double m42;
28 unrestricted double m43 = 0; 28 unrestricted double m43 = 0;
29 unrestricted double m44 = 1; 29 unrestricted double m44 = 1;
30 boolean is2D; 30 boolean is2D;
31 }; 31 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/geometry/DOMMatrix.idl ('k') | third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698