| Index: Source/core/dom/DOMMatrix.idl
|
| diff --git a/Source/core/dom/DOMMatrix.idl b/Source/core/dom/DOMMatrix.idl
|
| index e27a55cd8b1dcb5525f725cd8dc100c881749c23..96ac8fae48d465cc4a106d9947ea274f0b70e0ef 100644
|
| --- a/Source/core/dom/DOMMatrix.idl
|
| +++ b/Source/core/dom/DOMMatrix.idl
|
| @@ -38,4 +38,17 @@
|
| DOMMatrix translateSelf(unrestricted double tx,
|
| unrestricted double ty,
|
| optional unrestricted double tz = 0);
|
| + DOMMatrix scaleSelf(unrestricted double scale,
|
| + optional unrestricted double ox = 0,
|
| + optional unrestricted double oy = 0);
|
| + DOMMatrix scale3dSelf(unrestricted double scale,
|
| + optional unrestricted double ox = 0,
|
| + optional unrestricted double oy = 0,
|
| + optional unrestricted double oz = 0);
|
| + DOMMatrix scaleNonUniformSelf(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);
|
| };
|
|
|