Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / password / form_and_link.html
blob6bac0cc04246e476180a25f397cefb12625db8ad
1 <html>
2 <head>
3 <style>
4 /* The submit button's position and size is fixed, so that it's easy to specify
5 * tap/click coordinates for it. */
6 #input_submit_button {
7 top: 100px;
8 left: 0px;
9 position: absolute;
10 height: 300px;
11 width: 700px;
13 </style>
14 </head>
15 <body>
16 <!-- Use GET, so that the password is visible in the URL after submitting. -->
17 <form method="GET" action="done.html" id="testform">
18 <input type="text" id="username_field" name="username_field">
19 <input type="password" id="password_field" name="password_field">
20 <input type="submit" id="input_submit_button">
21 </form>
22 <a href="done.html" id="testlink" target="_blank">Link</a>
23 </body>
24 </html>