Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / test / data / password / no_form_element.html
blob0535d241e50ebfc31c02c27e73d74338d7b457ba
1 <html>
2 <head>
3 <script>
5 function state_changed(xhr) {
6 if (xhr.readyState == 4) {
7 window.top.location.href = "done.html";
11 function send_xhr() {
12 var xhr = new XMLHttpRequest();
13 xhr.onreadystatechange = function() { state_changed(xhr); };
14 xhr.open("GET", "password_xhr_submit.html", true);
15 xhr.send(null);
17 </script>
18 </head>
19 <body>
21 <input type="text" id="username_field">
22 <input type="password" id="password_field">
24 </body>
25 </html>