()
| 611 | } |
| 612 | |
| 613 | _incValue() { |
| 614 | if (this._incIconClickable && !this.disabled && !this.readonly) { |
| 615 | this._modifyValue(this.step, true); |
| 616 | this._previousValue = this.value; |
| 617 | } |
| 618 | } |
| 619 | |
| 620 | _decValue() { |
| 621 | if (this._decIconClickable && !this.disabled && !this.readonly) { |
nothing calls this directly
no test coverage detected