https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e76a0e43426960687ab5ea9ae526af6c34c6a93e authored by Marcos Caceres on 01 September 2017, 04:44:56 UTC
upateWith() must abort when dup shippingOption ids
Tip revision: e76a0e4
input-type-button.html
<!DOCTYPE HTML>
<head>
<title>input type button</title>
<link rel="author" title="Takeharu.Oshida" href="mailto:georgeosddev@gmail.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/#button-state-(type=button)">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<div id="hide" style="display">
  <input type="button"/>
  <input type="button" value="BUTTON"/>
  <form action="/" method="get" onsubmit="isSubmitted = true;return false;">
    <input type="button" value="mutable"/>
  </form>
  <form action="/" method="get" onsubmit="isSubmitted = true;return false;">
    <input type="button" value="immutable" disabled/>
  </form>
</div>
<script>
var isSubmitted = false;
var buttons = document.getElementsByTagName("input");

test(function() {
  assert_equals(buttons[0].click(), undefined, "The input element represents a button with no default behavior");
},"default behavior");

test(function() {
  assert_equals(buttons[0].value, "", "It must be the empty string");
},"empty value attribute");

test(function() {
  document.getElementById("hide").style.display = "block";
  assert_not_equals(buttons[0].offsetWidth, buttons[1].offsetWidth, "If the element has a value attribute, the button's label must be the value of that attribute");
  document.getElementById("hide").style.display = "none";
},"label value");

test(function() {
  isSubmitted = false;
  buttons[2].click();
  assert_equals(isSubmitted, false, "If the element is mutable, the element's activation behavior is to do nothing.");
},"mutable element's activation behavior is to do nothing.");

test(function() {
  isSubmitted = false;
  buttons[3].click()
  assert_equals(isSubmitted, false, "If the element is immutable, the element has no activation behavior.");
},"immutable element has no activation behavior.");
</script>
</body>
back to top