diff options
Diffstat (limited to 'components/script/dom/webidls/DOMMatrix.webidl')
-rw-r--r-- | components/script/dom/webidls/DOMMatrix.webidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/webidls/DOMMatrix.webidl b/components/script/dom/webidls/DOMMatrix.webidl index ffaa720b7d9..9911f868710 100644 --- a/components/script/dom/webidls/DOMMatrix.webidl +++ b/components/script/dom/webidls/DOMMatrix.webidl @@ -10,9 +10,9 @@ * related or neighboring rights to this work. */ -[Constructor(optional (DOMString or sequence<unrestricted double>) init), - Exposed=(Window,Worker)] +[Exposed=(Window,Worker)] interface DOMMatrix : DOMMatrixReadOnly { + [Throws] constructor(optional (DOMString or sequence<unrestricted double>) init); [NewObject, Throws] static DOMMatrix fromMatrix(optional DOMMatrixInit other = {}); [NewObject, Throws] static DOMMatrix fromFloat32Array(Float32Array array32); |