HTMLFormElement.idl 500 B

123456789101112131415161718
  1. #import <DOM/HTMLCollection.idl>
  2. #import <HTML/HTMLElement.idl>
  3. interface HTMLFormElement : HTMLElement {
  4. [Reflect] attribute DOMString name;
  5. [Reflect] attribute DOMString rel;
  6. [Reflect=accept-charset] attribute DOMString acceptCharset;
  7. [Reflect=novalidate] attribute boolean noValidate;
  8. undefined submit();
  9. // FIXME: Should be [SameObject] and a HTMLFormControlsCollection
  10. readonly attribute HTMLCollection elements;
  11. readonly attribute unsigned long length;
  12. };