mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-12 01:46:46 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
14 lines
565 B
Plaintext
14 lines
565 B
Plaintext
// https://drafts.fxtf.org/geometry/#dompoint
|
|
[Exposed=(Window,Worker), Serializable, LegacyWindowAlias=SVGRect]
|
|
interface DOMRect : DOMRectReadOnly {
|
|
constructor(optional unrestricted double x = 0, optional unrestricted double y = 0,
|
|
optional unrestricted double width = 0, optional unrestricted double height = 0);
|
|
|
|
[NewObject] static DOMRect fromRect(optional DOMRectInit other = {});
|
|
|
|
attribute unrestricted double x;
|
|
attribute unrestricted double y;
|
|
attribute unrestricted double width;
|
|
attribute unrestricted double height;
|
|
};
|