summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/forms_autocomplete.html
blob: 81401a1d27b8e71d571869185d4dbc9fb70cc226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
  <head>
    <meta charset="utf-8" />
    <title>Forms</title>
    <meta name="viewport" content="minimum-scale=1,width=device-width" />
  </head>
  <body>
    <form>
      <input type="text" autocomplete="email" autofocus />
      <input type="text" autocomplete="username" />
      <input type="password" />
      <input type="submit" value="submit" />
    </form>
    <iframe id="iframe" src="forms_autocomplete_iframe.html"></iframe>
  </body>
</html>