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

content / test / data / accessibility / accname / name-password-label-embedded-spinbutton.html [blame]

<!--
@BLINK-DENY:descri*
-->
<!doctype html>
<html>
<body>
<input type="password" id="test" />
<label for="test">
  foo
  <input role="spinbutton"
	 type="number"
	 value="5"
	 min="1"
	 max="10"
	 aria-valuenow="5"
	 aria-valuemin="1"
	 aria-valuemax="10">
  baz
</label>
</body>
</html>