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

content / test / data / accessibility / html / actions.html [blame]

<!--
@BLINK-ALLOW:actions*
-->
<!doctype html>
<html>
<head>
  <title>Actions</title>
</head>
<body style="height: 200vh;">
  <input role="slider" type="range"
         min="1"
         max="100"
         value="50"
         step="1"
         aria-valuemin="1"
         aria-valuemax="100"
         aria-valuenow="50">
  <input type="text" placeholder="Test textfield">
</body>
</html>