| Index: Source/core/dom/DOMMatrixReadOnly.idl
|
| diff --git a/Source/core/dom/DOMMatrixReadOnly.idl b/Source/core/dom/DOMMatrixReadOnly.idl
|
| index 53cec159e94b99a104c5df88d6899c16460db0bf..b7b6ec9e76262b390a42f6865ee6fe9569165063 100644
|
| --- a/Source/core/dom/DOMMatrixReadOnly.idl
|
| +++ b/Source/core/dom/DOMMatrixReadOnly.idl
|
| @@ -35,4 +35,17 @@
|
| readonly attribute boolean isIdentity;
|
|
|
| // FIXME: Should implement some methods (See: crbug.com/388780)
|
| + 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);
|
| };
|
|
|