()
| 524 | } |
| 525 | |
| 526 | _validate() { |
| 527 | if (this._initialValueState === undefined) { |
| 528 | this._initialValueState = this.valueState; |
| 529 | } |
| 530 | |
| 531 | this._updateValueState(); |
| 532 | } |
| 533 | |
| 534 | _updateValueState() { |
| 535 | const isWithinRange = (this.min === undefined || this._parseNumber(this.input.value) >= this.min) |
no test coverage detected