mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
16 lines
595 B
Plaintext
16 lines
595 B
Plaintext
// https://drafts.fxtf.org/geometry/#dompoint
|
|
[Exposed=(Window,Worker), Serializable, LegacyWindowAlias=SVGPoint]
|
|
interface DOMPoint : DOMPointReadOnly {
|
|
|
|
constructor(optional unrestricted double x = 0, optional unrestricted double y = 0,
|
|
optional unrestricted double z = 0, optional unrestricted double w = 1);
|
|
|
|
[NewObject] static DOMPoint fromPoint(optional DOMPointInit other = {});
|
|
|
|
inherit attribute unrestricted double x;
|
|
inherit attribute unrestricted double y;
|
|
inherit attribute unrestricted double z;
|
|
inherit attribute unrestricted double w;
|
|
|
|
};
|