mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 01:08:39 +09:00
Issue #1810 - Add DOMMatrix {get|set}Transform WebIDL interfaces
This commit is contained in:
parent
18f039543a
commit
9d6ffb5814
1 changed files with 5 additions and 0 deletions
|
|
@ -54,8 +54,13 @@ interface CanvasRenderingContext2D {
|
|||
void translate(double x, double y);
|
||||
[Throws, LenientFloat]
|
||||
void transform(double a, double b, double c, double d, double e, double f);
|
||||
|
||||
[NewObject, Throws]
|
||||
DOMMatrix getTransform();
|
||||
[Throws, LenientFloat]
|
||||
void setTransform(double a, double b, double c, double d, double e, double f);
|
||||
[Throws, LenientFloat]
|
||||
void setTransform(optional DOMMatrix2DInit transform);
|
||||
[Throws]
|
||||
void resetTransform();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue