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

Side by Side Diff: chrome/browser/resources/chromeos/set_time.html

Issue 747923004: webui: minimize webui flicker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: creis@ + davidben@ review Created 6 years 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="setTimeTitle"></title> 5 <title i18n-content="setTimeTitle"></title>
6 6
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <link rel="stylesheet" href="set_time.css"> 8 <link rel="stylesheet" href="set_time.css">
9 </head> 9 </head>
10 10
11 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 11 <body>
12 <form id="set-time"> 12 <form id="set-time">
13 <h2 i18n-content="setTimeTitle"></h2> 13 <h2 i18n-content="setTimeTitle"></h2>
14 <p id="prompt" i18n-content="prompt" class="row"></p> 14 <p id="prompt" i18n-content="prompt" class="row"></p>
15 15
16 <div class="timeControl"> 16 <div class="timeControl">
17 <input id="date" type="date" i18n-values="title:dateLabel"> 17 <input id="date" type="date" i18n-values="title:dateLabel">
18 <input id="time" type="time" i18n-values="title:timeLabel"> 18 <input id="time" type="time" i18n-values="title:timeLabel">
19 </div> 19 </div>
20 20
21 <div id="timezone" class="row" hidden> 21 <div id="timezone" class="row" hidden>
22 <label id="timezone-label" for="timezone-select" i18n-content="timezone"> 22 <label id="timezone-label" for="timezone-select" i18n-content="timezone">
23 </label> 23 </label>
24 <select id="timezone-select" i18n-options="timezoneList"></select> 24 <select id="timezone-select" i18n-options="timezoneList"></select>
25 </div> 25 </div>
26 26
27 <div class="button-strip"> 27 <div class="button-strip">
28 <button id="done" type="submit" i18n-content="doneButton"></button> 28 <button id="done" type="submit" i18n-content="doneButton"></button>
29 </div> 29 </div>
30 </form> 30 </form>
31 31
32 <script src="chrome://resources/js/cr.js"></script> 32 <script src="chrome://resources/js/cr.js"></script>
33 <script src="chrome://resources/js/load_time_data.js"></script> 33 <script src="chrome://resources/js/load_time_data.js"></script>
34 <script src="chrome://resources/js/util.js"></script> 34 <script src="chrome://resources/js/util.js"></script>
35 <script src="strings.js"></script> 35 <script src="strings.js"></script>
36 <script src="set_time.js"></script> 36 <script src="set_time.js"></script>
37 <script src="chrome://resources/js/i18n_template2.js"></script> 37 <script src="chrome://resources/js/i18n_template2.js"></script>
38 </body> 38 </body>
39 </html> 39 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/proxy_settings.html ('k') | chrome/browser/resources/downloads/downloads.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698