mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 11:48:32 +00:00
11 lines
267 B
Plaintext
11 lines
267 B
Plaintext
interface DOMRect : DOMRectReadOnly {
|
|
|
|
constructor(optional double x = 0, optional double y = 0, optional double width = 0, optional double height = 0);
|
|
|
|
attribute double x;
|
|
attribute double y;
|
|
attribute double width;
|
|
attribute double height;
|
|
|
|
};
|