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