HTMLOptGroupElement.idl 264 B

12345678910
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/form-elements.html#htmloptgroupelement
  3. [Exposed=Window]
  4. interface HTMLOptGroupElement : HTMLElement {
  5. [Reflect] attribute boolean disabled;
  6. [Reflect] attribute DOMString label;
  7. };