HTMLFormElement.idl 302 B

123456789101112
  1. #import <HTML/HTMLElement.idl>
  2. interface HTMLFormElement : HTMLElement {
  3. [Reflect] attribute DOMString name;
  4. [Reflect] attribute DOMString rel;
  5. [Reflect=accept-charset] attribute DOMString acceptCharset;
  6. [Reflect=novalidate] attribute boolean noValidate;
  7. undefined submit();
  8. };