summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/prompts.html
blob: 53e8f96b045a8ec1366b1fa90f9bfdc8866d58e7 (plain)
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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
  </head>
  <body>
    <select id="selectexample">
      <option>1</option>
      <option>2</option>
    </select>

    <input type="date" id="dateexample" />

    <input type="month" id="monthexample" />

    <input type="week" id="weekexample" />

    <input type="time" id="timeexample" />

    <input type="datetime-local" id="datetimelocalexample" />

    <input type="color" id="colorexample" value="#ffffff" />

    <input type="file" id="fileexample" accept="image/*,.pdf" capture="user" />

    <datalist id="colorlist">
      <option>#000000</option>
      <option>#808080</option>
    </datalist>
  </body>
</html>