Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / chrome / test / data / password / separate_login_form_with_onload_submit_script.html
1 <html>
2 <head>
3 <script type="text/javascript">
4 window.onload = function() {
5   document.getElementById('username_separate').value = "user";
6   document.getElementById('password_separate').value = "password";
7   document.getElementById('submit_separate').click();
8 }
9 </script>
10 <head>
11 <body>
12 <form method="POST" action="/password/done_and_separate_login_form.html" id="to_separate">
13   <input type="text" id="username_separate" name="username_separate">
14   <input type="password" id="password_separate" name="password_separate">
15   <input type="submit" id="submit_separate" name="submit_separate">
16 </form>
17 </body>
18 </html>