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

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

Issue 504623003: Implement skew*() methods in DOMMatrix. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 [ 5 [
6 Constructor, 6 Constructor,
7 Constructor(DOMMatrixReadOnly other), 7 Constructor(DOMMatrixReadOnly other),
8 // FIXME: Should implement more constructors (See: crbug.com/388780) 8 // FIXME: Should implement more constructors (See: crbug.com/388780)
9 RuntimeEnabled=GeometryInterfaces, 9 RuntimeEnabled=GeometryInterfaces,
10 ] interface DOMMatrix : DOMMatrixReadOnly { 10 ] interface DOMMatrix : DOMMatrixReadOnly {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 optional unrestricted double oz = 0); 55 optional unrestricted double oz = 0);
56 DOMMatrix rotateSelf(unrestricted double angle, 56 DOMMatrix rotateSelf(unrestricted double angle,
57 optional unrestricted double ox = 0, 57 optional unrestricted double ox = 0,
58 optional unrestricted double oy = 0); 58 optional unrestricted double oy = 0);
59 DOMMatrix rotateFromVectorSelf(unrestricted double x, 59 DOMMatrix rotateFromVectorSelf(unrestricted double x,
60 unrestricted double y); 60 unrestricted double y);
61 DOMMatrix rotateAxisAngleSelf(unrestricted double x, 61 DOMMatrix rotateAxisAngleSelf(unrestricted double x,
62 unrestricted double y, 62 unrestricted double y,
63 unrestricted double z, 63 unrestricted double z,
64 unrestricted double angle); 64 unrestricted double angle);
65 DOMMatrix skewXSelf(unrestricted double sx);
66 DOMMatrix skewYSelf(unrestricted double sy);
65 }; 67 };
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