(v: number)
| 665 | this.markDirty() |
| 666 | } |
| 667 | setHeightPercent(v: number): void { |
| 668 | this.style.height = percentValue(v) |
| 669 | this.markDirty() |
| 670 | } |
| 671 | setHeightAuto(): void { |
| 672 | this.style.height = AUTO_VALUE |
| 673 | this.markDirty() |
nothing calls this directly
no test coverage detected