1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23

content / test / data / accessibility / html / button-submit.html [blame]

<!--
@BLINK-ALLOW:default
-->
<!DOCTYPE html>
<html>
<body>

<form>
  <input type="text" name="Name">
  <button type="submit">First submit in a form is a valid default button</button>
  <button type="submit">Second submit in a form not a valid default button</button>
</form>

<form>
  <input type="text" name="Name">
  <button>First button in form is a valid default button</button>
  <button>Second button in form not a valid default button</button>
</form>

<button type="submit">Submit outside of form not a valid default button</button>
</body>
</html>