ButtonElement.hx 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Copyright (C)2005-2019 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. 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.
  33. **/
  34. var autofocus : Bool;
  35. /**
  36. Is a `Boolean` indicating whether or not the control is disabled, meaning that it does not accept any clicks.
  37. **/
  38. var disabled : Bool;
  39. /**
  40. 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.
  41. 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.
  42. **/
  43. var form(default,null) : FormElement;
  44. /**
  45. 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.
  46. **/
  47. var formAction : String;
  48. /**
  49. Is a `DOMString` reflecting the type of content that is used to submit the form to the server. If specified, this attribute overrides the `enctype` attribute of the `form` element that owns this element.
  50. **/
  51. var formEnctype : String;
  52. /**
  53. 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.
  54. **/
  55. var formMethod : String;
  56. /**
  57. 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.
  58. **/
  59. var formNoValidate : Bool;
  60. /**
  61. 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.
  62. **/
  63. var formTarget : String;
  64. /**
  65. 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.
  66. **/
  67. var name : String;
  68. /**
  69. Is a `DOMString` indicating the behavior of the button. This is an enumerated attribute with the following possible values:
  70. `"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.
  71. `"reset"`: The button resets the form.
  72. `"button"`: The button does nothing.
  73. `"menu"`: The button displays a menu. <em>(experimental)</em>
  74. **/
  75. var type : String;
  76. /**
  77. Is a `DOMString` representing the current form control value of the button.
  78. **/
  79. var value : String;
  80. /**
  81. Is a `Boolean` indicating whether the button is a candidate for constraint validation. It is `false` if any conditions bar it from constraint validation.
  82. **/
  83. var willValidate(default,null) : Bool;
  84. /**
  85. Is a `ValidityState` representing the validity states that this button is in.
  86. **/
  87. var validity(default,null) : ValidityState;
  88. /**
  89. 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.
  90. **/
  91. var validationMessage(default,null) : String;
  92. /**
  93. Is a `NodeList` that represents a list of `label` elements that are labels for this button.
  94. **/
  95. var labels(default,null) : NodeList;
  96. function checkValidity() : Bool;
  97. function reportValidity() : Bool;
  98. function setCustomValidity( error : String ) : Void;
  99. }