(v: number | 'auto' | string | undefined)
| 649 | // -- Style setters: dimensions |
| 650 | |
| 651 | setWidth(v: number | 'auto' | string | undefined): void { |
| 652 | this.style.width = parseDimension(v) |
| 653 | this.markDirty() |
| 654 | } |
| 655 | setWidthPercent(v: number): void { |
| 656 | this.style.width = percentValue(v) |
| 657 | this.markDirty() |
nothing calls this directly
no test coverage detected