(v: number | 'auto' | string | undefined)
| 661 | this.markDirty() |
| 662 | } |
| 663 | setHeight(v: number | 'auto' | string | undefined): void { |
| 664 | this.style.height = parseDimension(v) |
| 665 | this.markDirty() |
| 666 | } |
| 667 | setHeightPercent(v: number): void { |
| 668 | this.style.height = percentValue(v) |
| 669 | this.markDirty() |
nothing calls this directly
no test coverage detected