summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/form_blank.html
blob: 918cc4cb7a4fba56b307193baa8b7db3ca7d7e12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>Forms</title>
    <meta name="viewport" content="minimum-scale=1,width=device-width" />
  </head>
  <body>
    <form
      id="form1"
      name="form1"
      action="form_blank.html"
      method="get"
      target="_blank"
    >
      <input type="text" id="search" value="foo" />
      <input type="submit" />
    </form>
  </body>
</html>