1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40

content / test / data / accessibility / html / input-types.html [blame]

<!--
@BLINK-ALLOW:default
@BLINK-ALLOW:*editable*
@BLINK-ALLOW:*Editable*
@WIN-ALLOW:DEFAULT
@WIN-ALLOW:text-input-type*
@AURALINUX-ALLOW:default
@AURALINUX-ALLOW:text-input-type*
@AURALINUX-DENY:checkable
-->
<!DOCTYPE html>
<html>
  <body>
    <label>Default: <input></label>
    <label>Button: <input type="button"></label>
    <label>Checkbox: <input type="checkbox"></label>
    <label>Color: <input type="color"></label>
    <label>Date: <input type="date"></label>
    <label>Datetime: <input type="datetime"></label>
    <label>Datetime-local: <input type="datetime-local"></label>
    <label>Email: <input type="email"></label>
    <label>Empty: <input type=""></label>
    <label>File: <input type="file"></label>
    <label>Image: <input type="image"></label>
    <label>Invalid: <input type="foo-bar"></label>
    <label>Month: <input type="month"></label>
    <label>Number: <input type="number"></label>
    <label>Password: <input type="password"></label>
    <label>Radio: <input type="radio"></label>
    <label>Range: <input type="range"></label>
    <label>Reset: <input type="reset"></label>
    <label>Search: <input type="search"></label>
    <label>Submit: <input type="submit"></label>
    <label>Tel: <input type="tel"></label>
    <label>Text: <input type="text"></label>
    <label>Time: <input type="time"></label>
    <label>Url: <input type="url"></label>
    <label>Week: <input type="week"></label>
  </body>
</html>