mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 20:16:02 +00:00
LibWeb: Add DOMMatrix flipX and flipY
This commit is contained in:
parent
fc380bf516
commit
f1742ae1b9
Notes:
sideshowbarker
2024-07-17 04:21:32 +09:00
Author: https://github.com/bplaat
Commit: f1742ae1b9
Pull-request: https://github.com/SerenityOS/serenity/pull/20950
Reviewed-by: https://github.com/gmta ✅
5 changed files with 50 additions and 2 deletions
|
@ -49,8 +49,8 @@ interface DOMMatrixReadOnly {
|
|||
[NewObject] DOMMatrix skewX(optional unrestricted double sx = 0);
|
||||
[NewObject] DOMMatrix skewY(optional unrestricted double sy = 0);
|
||||
[NewObject] DOMMatrix multiply(optional DOMMatrixInit other = {});
|
||||
// FIXME: [NewObject] DOMMatrix flipX();
|
||||
// FIXME: [NewObject] DOMMatrix flipY();
|
||||
[NewObject] DOMMatrix flipX();
|
||||
[NewObject] DOMMatrix flipY();
|
||||
[NewObject] DOMMatrix inverse();
|
||||
|
||||
[NewObject] DOMPoint transformPoint(optional DOMPointInit point = {});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue