aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/DOMMatrixReadOnly.webidl
diff options
context:
space:
mode:
authorSimon Wülker <simon.wuelker@arcor.de>2024-10-11 05:06:44 +0200
committerGitHub <noreply@github.com>2024-10-11 03:06:44 +0000
commitc00c6e728ddb82d6cb646eb924a73c4b43a798a4 (patch)
tree90b76d1acc39b69fd2224793014f9e7089b6fefd /components/script/dom/webidls/DOMMatrixReadOnly.webidl
parentfc2c77be8363759657b50992b93d08d40f8fbf1b (diff)
downloadservo-c00c6e728ddb82d6cb646eb924a73c4b43a798a4.tar.gz
servo-c00c6e728ddb82d6cb646eb924a73c4b43a798a4.zip
Implement DOMMatrix `stringifier` (#33792)
* Implement DOMMatrix stringifier Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Update WPT expectations Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> --------- Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>
Diffstat (limited to 'components/script/dom/webidls/DOMMatrixReadOnly.webidl')
-rw-r--r--components/script/dom/webidls/DOMMatrixReadOnly.webidl2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/DOMMatrixReadOnly.webidl b/components/script/dom/webidls/DOMMatrixReadOnly.webidl
index 689b83ddc58..92993905db4 100644
--- a/components/script/dom/webidls/DOMMatrixReadOnly.webidl
+++ b/components/script/dom/webidls/DOMMatrixReadOnly.webidl
@@ -81,6 +81,6 @@ interface DOMMatrixReadOnly {
DOMPoint transformPoint(optional DOMPointInit point = {});
Float32Array toFloat32Array();
Float64Array toFloat64Array();
-// [Exposed=Window] stringifier;
+ [Exposed=Window, Throws] stringifier;
[Default] object toJSON();
};