mirror of
https://github.com/servo/servo.git
synced 2025-08-09 15:35:34 +01:00
Add DOMQuad element
This commit is contained in:
parent
338f66003e
commit
823e1b96c3
8 changed files with 178 additions and 119 deletions
|
@ -20,3 +20,10 @@ interface DOMPoint : DOMPointReadOnly {
|
|||
inherit attribute unrestricted double z;
|
||||
inherit attribute unrestricted double w;
|
||||
};
|
||||
|
||||
dictionary DOMPointInit {
|
||||
unrestricted double x = 0;
|
||||
unrestricted double y = 0;
|
||||
unrestricted double z = 0;
|
||||
unrestricted double w = 1;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue