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

Side by Side Diff: chrome/browser/resources/inline_login/inline_login.html

Issue 2719833004: Inline login: fix script error from new <paper-ripple> (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <title i18n-content="title"></title> 4 <title i18n-content="title"></title>
5 <link rel="import" href="chrome://resources/html/polymer.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/pap er-icon-button.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/pap er-icon-button.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons .html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons .html">
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
8 <link rel="stylesheet" href="chrome://resources/css/spinner.css"> 9 <link rel="stylesheet" href="chrome://resources/css/spinner.css">
9 <link rel="stylesheet" href="chrome://chrome-signin/inline_login.css"> 10 <link rel="stylesheet" href="chrome://chrome-signin/inline_login.css">
10 <script src="chrome://resources/js/cr.js"></script> 11 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/cr/event_target.js"></script> 12 <script src="chrome://resources/js/cr/event_target.js"></script>
12 <script src="chrome://resources/js/load_time_data.js"></script> 13 <script src="chrome://resources/js/load_time_data.js"></script>
13 <script src="chrome://resources/js/util.js"></script> 14 <script src="chrome://resources/js/util.js"></script>
14 <script src="chrome://chrome-signin/gaia_auth_host.js"></script> 15 <script src="chrome://chrome-signin/gaia_auth_host.js"></script>
15 <script src="chrome://chrome-signin/inline_login.js"></script> 16 <script src="chrome://chrome-signin/inline_login.js"></script>
16 <script src="chrome://chrome-signin/strings.js"></script> 17 <script src="chrome://chrome-signin/strings.js"></script>
17 </head> 18 </head>
18 <body> 19 <body>
19 <div id="contents" class="loading"> 20 <div id="contents" class="loading">
20 <webview id="signin-frame" name="signin-frame" allowscaling></webview> 21 <webview id="signin-frame" name="signin-frame" allowscaling></webview>
21 <div id="spinner-container"> 22 <div id="spinner-container">
22 <div class="spinner"></div> 23 <div class="spinner"></div>
23 </div> 24 </div>
24 </div> 25 </div>
25 <paper-icon-button id="navigation-button" 26 <paper-icon-button id="navigation-button"
26 icon="icons:close"></paper-icon-button> 27 icon="icons:close"></paper-icon-button>
27 <script src="chrome://resources/js/i18n_template.js"></script> 28 <script src="chrome://resources/js/i18n_template.js"></script>
28 </body> 29 </body>
29 </html> 30 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698