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 / html / input-time.html [blame]

<!--
@BLINK-ALLOW:inputType=*
@MAC-ALLOW:AXRoleDescription
@WIN-ALLOW:ia2_hypertext=*
@WIN-ALLOW:xml-roles*
@WIN-ALLOW:description*
@WIN-ALLOW:text-input-type*
@AURALINUX-ALLOW:text-input-type:*
@AURALINUX-ALLOW:xml-roles*
@AURALINUX-ALLOW:description*
-->
<!DOCTYPE html>
<html>
  <body>
    <input type="time" value="00:00:00">
    <input type="time" value="00:00:00" aria-label="Breakfast">
    <!-- Using datalist -->
    <input type=time list="suggestions">
    <datalist id=suggestions>
  </body>
</html>