summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/cc_form.html
blob: 7b3ea2a1bb76e6e775f90874bd14f1f234b006f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
  <head>
    <meta charset="utf-8" />
    <title>Form Autofill Test: Credit Card</title>
  </head>
  <body>
    <form id="form1">
      <input autocomplete="cc-name" id="name" />
      <input autocomplete="cc-number" id="number" />
      <input autocomplete="cc-exp-month" id="expMonth" />
      <input autocomplete="cc-exp-year" id="expYear" />
      <input type="submit" value="Submit" />
    </form>
    <!-- form2 uses a single expiration date field -->
    <form id="form2">
      <input autocomplete="cc-name" id="name" />
      <input autocomplete="cc-number" id="number" />
      <input autocomplete="cc-exp" id="exp" />
      <input type="submit" value="Submit" />
    </form>
  </body>
</html>