(v: number)
| 653 | this.markDirty() |
| 654 | } |
| 655 | setWidthPercent(v: number): void { |
| 656 | this.style.width = percentValue(v) |
| 657 | this.markDirty() |
| 658 | } |
| 659 | setWidthAuto(): void { |
| 660 | this.style.width = AUTO_VALUE |
| 661 | this.markDirty() |
nothing calls this directly
no test coverage detected