()
| 620 | return p ? p.layout.height - this.layout.top - this.layout.height : 0 |
| 621 | } |
| 622 | getComputedLayout(): { |
| 623 | left: number |
| 624 | top: number |
| 625 | right: number |
| 626 | bottom: number |
| 627 | width: number |
| 628 | height: number |
| 629 | } { |
| 630 | return { |
| 631 | left: this.layout.left, |
| 632 | top: this.layout.top, |
| 633 | right: this.getComputedRight(), |
| 634 | bottom: this.getComputedBottom(), |
| 635 | width: this.layout.width, |
| 636 | height: this.layout.height, |
| 637 | } |
| 638 | } |
| 639 | getComputedBorder(edge: Edge): number { |
| 640 | return this.layout.border[physicalEdge(edge)]! |
| 641 | } |
nothing calls this directly
no test coverage detected