HTMLSelectElement.idl 350 B

12345678910111213
  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. attribute long selectedIndex;
  9. };