1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #include "nsIDOMHTMLElement.idl"
- [scriptable, uuid(a6cf9095-15b3-11d2-932e-00805f8add32)]
- interface nsIDOMHTMLButtonElement : nsIDOMHTMLElement
- {
- readonly attribute nsIDOMHTMLFormElement form;
- attribute DOMString accessKey;
- attribute boolean disabled;
- attribute DOMString name;
- attribute long tabIndex;
- // The scriptable version of type is writable and lives on
- // nsIDOMNSHTMLButtonElement (have to do it this way because this
- // interface is frozen and we don't want to break binary compat).
- [noscript] readonly attribute DOMString type;
- attribute DOMString value;
- };
|