* Creates a new DOMRectReadOnly.
(x = 0, y = 0, width = 0, height = 0)
| 33 | * Creates a new DOMRectReadOnly. |
| 34 | */ |
| 35 | constructor(x = 0, y = 0, width = 0, height = 0) { |
| 36 | this.x = x; |
| 37 | this.y = y; |
| 38 | this.width = width; |
| 39 | this.height = height; |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * The top edge of the rectangle. |
nothing calls this directly
no outgoing calls
no test coverage detected