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

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

Issue 247663003: Date and Time dialog for when the clock isn't synced. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, single quotes in browsertest js Created 6 years, 8 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
(Empty)
1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;">
3 <head>
4 <meta charset="utf-8">
5 <title i18n-content="setTimeTitle"></title>
6
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <link rel="stylesheet" href="set_time.css">
9 </head>
10
11 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
12 <form id="set-time">
13 <h2 i18n-content="setTimeTitle"></h2>
14 <p id="prompt" i18n-content="prompt" class="row"></p>
15
16 <div class="timeControl">
17 <input id="date" type="date" i18n-values="title:dateLabel">
18 <input id="time" type="time" i18n-values="title:timeLabel">
19 </div>
20
21 <div id="timezone" class="row" hidden>
22 <label id="timezone-label" for="timezone-select" i18n-content="timezone">
23 </label>
24 <select id="timezone-select" i18n-options="timezoneList"></select>
25 </div>
26
27 <div class="button-strip">
28 <button id="done" type="submit" i18n-content="doneButton"></button>
29 </div>
30 </form>
31
32 <script src="chrome://resources/js/cr.js"></script>
33 <script src="chrome://resources/js/load_time_data.js"></script>
34 <script src="chrome://resources/js/util.js"></script>
35 <script src="strings.js"></script>
36 <script src="set_time.js"></script>
37 <script src="chrome://resources/js/i18n_template2.js"></script>
38 </body>
39 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/set_time.css ('k') | chrome/browser/resources/chromeos/set_time.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698