summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/forms_autocomplete.html
blob: 82c84212c3c57c9b01ee413e3b27980685ebe269 (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>