HTMLSelectElement.idl 315 B

1234567891011
  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. };