Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: chrome/test/data/password/done_and_separate_login_form.html

Issue 488083002: [Password Manager] Fix to recognise failed login attempt for sites where content server pushes new … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@branch_autofill_todo_20140813
Patch Set: Updated as per review comments. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script type="text/javascript">
4 window.onload = function() {
5 document.getElementById('to_separate').action = getLocationWithHttpSchemeSecur itySwapped();
6 }
7
8 function getLocationWithHttpSchemeSecuritySwapped() {
9 var protocol = ("http:" == window.location.protocol) ? "https://" : "http://";
10 var url = protocol + window.location.host + window.location.pathname;
11 return url;
12 }
13 </script>
14 </head>
15 <body>
16 Navigation complete. Below is the different login form pushed by server but with same action URL.
17 The URL schem may or may not be same. Moreover, browser shall not promp user to save incorrect password.
18 <form method="POST" id="to_separate">
19 <input type="text" id="username_separate" name="username_separate">
20 <input type="password" id="password_separate" name="password_separate">
21 <input type="submit" id="submit_separate" name="submit_separate">
22 </form>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698