1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #include "nsIDOMHTMLElement.idl"
- [scriptable, uuid(a6cf908f-15b3-11d2-932e-00805f8add32)]
- interface nsIDOMHTMLFormElement : nsIDOMHTMLElement
- {
- readonly attribute nsIDOMHTMLCollection elements;
- readonly attribute long length;
- attribute DOMString name;
- attribute DOMString acceptCharset;
- attribute DOMString action;
- attribute DOMString enctype;
- attribute DOMString method;
- attribute DOMString target;
- void submit();
- void reset();
- };
|