()
| 1328 | } |
| 1329 | |
| 1330 | getRect(): DOMRect | null { |
| 1331 | if (this.isRoot()) { |
| 1332 | return this.document.simulator?.viewport.contentBounds || null; |
| 1333 | } |
| 1334 | return this.document.simulator?.computeRect(this) || null; |
| 1335 | } |
| 1336 | |
| 1337 | /** |
| 1338 | * @deprecated |
nothing calls this directly
no test coverage detected