- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / session_restore / post.html
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();
8 }
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>