| OLD | NEW |
| 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 Loading... |
| 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 }; |
| OLD | NEW |