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

Side by Side Diff: chrome/test/data/login/saml_api_login_v1.html

Issue 258123002: Implement a second version of the credentials passing API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comment. Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script type="text/javascript"> 3 <script type="text/javascript">
4 function initialize() { 4 function initialize() {
5 window.setTimeout(function() { 5 window.setTimeout(function() {
6 window.postMessage({ 6 window.postMessage({
7 type: 'gaia_saml_api', 7 type: 'gaia_saml_api',
8 call: {method: 'initialize'}}, '/'); 8 call: {method: 'initialize'}}, '/');
9 }, 0); 9 }, 0);
10 } 10 }
(...skipping 17 matching lines...) Expand all
28 </head> 28 </head>
29 <body onload="initialize();"> 29 <body onload="initialize();">
30 <form method=post action="$Post"> 30 <form method=post action="$Post">
31 <input type=hidden name=RelayState value="$RelayState"> 31 <input type=hidden name=RelayState value="$RelayState">
32 User: <input type=text id=Email name=Email> 32 User: <input type=text id=Email name=Email>
33 Password: <input type=password id=Password name=Password> 33 Password: <input type=password id=Password name=Password>
34 <input id=Submit type=button value="Login" onclick="send_and_submit();"/> 34 <input id=Submit type=button value="Login" onclick="send_and_submit();"/>
35 </form> 35 </form>
36 </body> 36 </body>
37 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698