ButtonElement.hx 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * Copyright (C)2005-2017 Haxe Foundation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  20. * DEALINGS IN THE SOFTWARE.
  21. */
  22. // This file is generated from mozilla\HTMLButtonElement.webidl. Do not edit!
  23. package js.html;
  24. /**
  25. The `HTMLButtonElement` interface provides properties and methods (beyond the `button` object interface it also has available to them by inheritance) for manipulating the layout and presentation of button elements.
  26. Documentation [HTMLButtonElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement) by [Mozilla Contributors](https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement$history), licensed under [CC-BY-SA 2.5](https://creativecommons.org/licenses/by-sa/2.5/).
  27. @see <https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement>
  28. **/
  29. @:native("HTMLButtonElement")
  30. extern class ButtonElement extends Element
  31. {
  32. /**
  33. Is a `Boolean` indicating whether or not the control should have input focus when the page loads, unless the user overrides it, for example by typing in a different control. Only one form-associated element in a document can have this attribute specified.
  34. **/
  35. var autofocus : Bool;
  36. /**
  37. Is a `Boolean` indicating whether or not the control is disabled, meaning that it does not accept any clicks.
  38. **/
  39. var disabled : Bool;
  40. /**
  41. Is a `HTMLFormElement` reflecting the form that this button is associated with. If the button is a descendant of a form element, then this attribute is the ID of that form element.
  42. If the button is not a descendant of a form element, then the attribute can be the ID of any form element in the same document it is related to, or the `null` value if none matches.
  43. **/
  44. var form(default,null) : FormElement;
  45. /**
  46. Is a `DOMString` reflecting the URI of a resource that processes information submitted by the button. If specified, this attribute overrides the `action` attribute of the `form` element that owns this element.
  47. **/
  48. var formAction : String;
  49. var formEnctype : String;
  50. /**
  51. Is a `DOMString` reflecting the HTTP method that the browser uses to submit the form. If specified, this attribute overrides the `method` attribute of the `form` element that owns this element.
  52. **/
  53. var formMethod : String;
  54. /**
  55. Is a `Boolean` indicating that the form is not to be validated when it is submitted. If specified, this attribute overrides the `novalidate` attribute of the `form` element that owns this element.
  56. **/
  57. var formNoValidate : Bool;
  58. /**
  59. Is a `DOMString` reflecting a name or keyword indicating where to display the response that is received after submitting the form. If specified, this attribute overrides the `target` attribute of the `form` element that owns this element.
  60. **/
  61. var formTarget : String;
  62. /**
  63. Is a `DOMString` representing the name of the object when submitted with a form. {{HTMLVersionInline(5)}} If specified, it must not be the empty string.
  64. **/
  65. var name : String;
  66. /**
  67. Is a `DOMString` indicating the behavior of the button. This is an enumerated attribute with the following possible values:
  68. `"submit"`: The button submits the form. This is the default value if the attribute is not specified, {{HTMLVersionInline(5)}} or if it is dynamically changed to an empty or invalid value.
  69. `"reset"`: The button resets the form.
  70. `"button"`: The button does nothing.
  71. `"menu"`: The button displays a menu. <em>(experimental)</em>
  72. **/
  73. var type : String;
  74. /**
  75. Is a `DOMString` representing the current form control value of the button.
  76. **/
  77. var value : String;
  78. /**
  79. Is a `Boolean` indicating whether the button is a candidate for constraint validation. It is `false` if any conditions bar it from constraint validation.
  80. **/
  81. var willValidate(default,null) : Bool;
  82. /**
  83. Is a `ValidityState` representing the validity states that this button is in.
  84. **/
  85. var validity(default,null) : ValidityState;
  86. /**
  87. Is a `DOMString` representing the localized message that describes the validation constraints that the control does not satisfy (if any). This attribute is the empty string if the control is not a candidate for constraint validation (`willValidate` is `false`), or it satisfies its constraints.
  88. **/
  89. var validationMessage(default,null) : String;
  90. function checkValidity() : Bool;
  91. function setCustomValidity( error : String ) : Void;
  92. }