HTMLSelectElement.idl 483 B

123456789101112131415
  1. #import <HTML/HTMLElement.idl>
  2. #import <HTML/HTMLOptionsCollection.idl>
  3. interface HTMLSelectElement : HTMLElement {
  4. [Reflect] attribute boolean disabled;
  5. [Reflect] attribute boolean multiple;
  6. [Reflect] attribute boolean required;
  7. [SameObject] readonly attribute HTMLOptionsCollection options;
  8. [CEReactions] undefined add((HTMLOptionElement or HTMLOptGroupElement) element, optional (HTMLElement or long)? before = null);
  9. attribute long selectedIndex;
  10. };