(raw: string)
| 54 | accessor autofocus: boolean; |
| 55 | |
| 56 | set defaultValue(raw: string) { |
| 57 | this.setAttribute('value', raw); |
| 58 | |
| 59 | this.value ??= raw; |
| 60 | } |
| 61 | |
| 62 | get defaultValue() { |
| 63 | return this.getAttribute('value'); |
nothing calls this directly
no test coverage detected