* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptionElement * @return label attribute value or text content if there is no attribute.
()
| 23 | * @return label attribute value or text content if there is no attribute. |
| 24 | */ |
| 25 | get label(): string { |
| 26 | return this.getAttribute('label') || this.textContent; |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptionElement |
nothing calls this directly
no test coverage detected