Bug 1704628 Part 4: Avoid use of ESC to close context menu in browser_toolbox_content...
[gecko.git] / dom / webidl / HTMLButtonElement.webidl
blobb76d8cc73fb5bf9939920b083ea647320d0e8a62
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  *
6  * The origin of this IDL file is
7  * http://www.whatwg.org/specs/web-apps/current-work/#the-button-element
8  * © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and
9  * Opera Software ASA. You are granted a license to use, reproduce
10  * and create derivative works of this document.
11  */
13 // http://www.whatwg.org/specs/web-apps/current-work/#the-button-element
14 [Exposed=Window]
15 interface HTMLButtonElement : HTMLElement {
16   [HTMLConstructor] constructor();
18   [CEReactions, SetterThrows, Pure]
19            attribute boolean autofocus;
20   [CEReactions, SetterThrows, Pure]
21            attribute boolean disabled;
22   [Pure]
23   readonly attribute HTMLFormElement? form;
24   [CEReactions, SetterThrows, Pure]
25            attribute DOMString formAction;
26   [CEReactions, SetterThrows, Pure]
27            attribute DOMString formEnctype;
28   [CEReactions, SetterThrows, Pure]
29            attribute DOMString formMethod;
30   [CEReactions, SetterThrows, Pure]
31            attribute boolean formNoValidate;
32   [CEReactions, SetterThrows, Pure]
33            attribute DOMString formTarget;
34   [CEReactions, SetterThrows, Pure]
35            attribute DOMString name;
36   [CEReactions, SetterThrows, Pure]
37            attribute DOMString type;
38   [CEReactions, SetterThrows, Pure]
39            attribute DOMString value;
41   readonly attribute boolean willValidate;
42   readonly attribute ValidityState validity;
43   [Throws]
44   readonly attribute DOMString validationMessage;
45   boolean checkValidity();
46   boolean reportValidity();
47   void setCustomValidity(DOMString error);
49   readonly attribute NodeList labels;