| Index: Source/core/dom/DOMMatrixReadOnly.idl
|
| diff --git a/Source/core/dom/DOMMatrixReadOnly.idl b/Source/core/dom/DOMMatrixReadOnly.idl
|
| index b26637506bc17ad8c8799b2c9f630fb64544b5ca..6e3c763eb99f490a0452a34519c1895554c6d241 100644
|
| --- a/Source/core/dom/DOMMatrixReadOnly.idl
|
| +++ b/Source/core/dom/DOMMatrixReadOnly.idl
|
| @@ -39,4 +39,17 @@
|
| DOMMatrix translate(unrestricted double tx,
|
| unrestricted double ty,
|
| optional unrestricted double tz = 0);
|
| + DOMMatrix scale(unrestricted double scale,
|
| + optional unrestricted double ox = 0,
|
| + optional unrestricted double oy = 0);
|
| + DOMMatrix scale3d(unrestricted double scale,
|
| + optional unrestricted double ox = 0,
|
| + optional unrestricted double oy = 0,
|
| + optional unrestricted double oz = 0);
|
| + DOMMatrix scaleNonUniform(unrestricted double sx,
|
| + optional unrestricted double sy = 1,
|
| + optional unrestricted double sz = 1,
|
| + optional unrestricted double ox = 0,
|
| + optional unrestricted double oy = 0,
|
| + optional unrestricted double oz = 0);
|
| };
|
|
|