* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptionElement * @return value attribute value or text content if there is no attribute.
()
| 79 | * @return value attribute value or text content if there is no attribute. |
| 80 | */ |
| 81 | get value(): any { |
| 82 | return this.getAttribute('value') || this.textContent; |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptionElement |
nothing calls this directly
no test coverage detected