Add matrixTransform for DOMPointReadOnly (#38801)

Adds the `matrixTransform` function for `DOMPointReadOnly`.

Testing: Covered by WPT tests (`css/geometry`)

---------

Signed-off-by: lumiscosity <averyrudelphe@gmail.com>
This commit is contained in:
lumiscosity 2025-08-20 18:36:59 +02:00 committed by GitHub
parent d8ff9c7a08
commit 8e2f65bd16
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 50 additions and 51 deletions

View file

@ -22,5 +22,7 @@ interface DOMPointReadOnly {
readonly attribute unrestricted double z;
readonly attribute unrestricted double w;
[Throws, NewObject] DOMPoint matrixTransform(optional DOMMatrixInit matrix = {});
[Default] object toJSON();
};