Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / session_restore / post_with_password.html
blob3f4a4461e770780edce8634975f9b93cbeaabc70
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 function onLoad() {
6 document.getElementById('posted-text').value = 'text-entered';
7 document.getElementById('posted-password').value = 'password-entered';
8 document.getElementById('form-to-submit').submit();
10 </script>
11 </head>
12 <body onload="setTimeout(onLoad, 0);">
13 <form id="form-to-submit" action="posted.php" method="post"
14 enctype="multipart/form-data">
15 Text to input: <input id="posted-text" type="text" name="posted-text"/><br>
16 Password to input:
17 <input id="posted-password" type="password" name="posted-password"/><br>
18 <input type="submit" value="Submit" />
19 </form>
20 </body>
21 </html>