HTMLOptionElement.idl 338 B

12345678910111213
  1. #import <HTML/HTMLElement.idl>
  2. interface HTMLOptionElement : HTMLElement {
  3. [Reflect] attribute boolean disabled;
  4. [Reflect=selected] attribute boolean defaultSelected;
  5. attribute boolean selected;
  6. [CEReactions] attribute DOMString value;
  7. [CEReactions] attribute DOMString text;
  8. readonly attribute long index;
  9. };