Adding new functionality through nsEventStateManager (cursor change, enter/exit events, tab navig) git-svn-id: svn://10.0.0.236/trunk@14864 18797224-902f-48f8-a5cc-f745e15eee43
20 lines
725 B
Plaintext
20 lines
725 B
Plaintext
interface HTMLButtonElement : HTMLElement {
|
|
/* IID: { 0xa6cf9095, 0x15b3, 0x11d2, \
|
|
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
|
|
|
|
readonly attribute HTMLFormElement form;
|
|
attribute DOMString accessKey;
|
|
attribute boolean disabled;
|
|
attribute DOMString name;
|
|
attribute long tabIndex;
|
|
readonly attribute DOMString type;
|
|
attribute DOMString value;
|
|
};
|
|
|
|
interface NSHTMLButtonElement {
|
|
/* IID: { 0x6fd344d0, 0x7e5f, 0x11d2, \
|
|
{ 0xbd, 0x91, 0x00, 0x80, 0x5f, 0x8a, 0xe3, 0xf4 } } */
|
|
void blur();
|
|
void focus();
|
|
|
|
}; |