mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-30 11:37:16 +02: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;
|
|
|
|
};
|