Add DOMQuad element

This commit is contained in:
Guillaume Gomez 2015-12-08 00:40:31 +01:00 committed by ggomez
parent 338f66003e
commit 823e1b96c3
8 changed files with 178 additions and 119 deletions

View file

@ -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;
};