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

Unified 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: Set Time Dialog 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/set_time.html
diff --git a/chrome/browser/resources/chromeos/set_time.html b/chrome/browser/resources/chromeos/set_time.html
new file mode 100644
index 0000000000000000000000000000000000000000..265cc8e42a630f37057142f1191352cfbf5055ce
--- /dev/null
+++ b/chrome/browser/resources/chromeos/set_time.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html i18n-values="dir:textdirection;">
+<head>
+<meta charset="utf-8">
+<title i18n-content="setTimeTitle"></title>
+
+<link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
+<link rel="stylesheet" href="set_time.css">
+
+<script src="chrome://resources/js/cr.js"></script>
+<script src="chrome://resources/js/load_time_data.js"></script>
+<script src="chrome://resources/js/util.js"></script>
+
+<script src="strings.js"></script>
+<script src="set_time.js"></script>
+
Dan Beam 2014/04/23 17:51:45 nit: I'm not totally sure I understand the organiz
+</head>
+
+<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
+
+<div id="set-time">
+ <h2 i18n-content="setTimeTitle"></h2>
+ <p id="prompt" i18n-content="prompt" class="row"></p>
+
+ <div class="timeControl">
+ <input type="date" id="date" />
Dan Beam 2014/04/23 17:51:45 I wouldn't bother with end slashes for self-closin
michaelpg 2014/04/24 01:32:23 Old habits...
+ <input type="time" id="time" />
+ </div>
+
+ <div id="timezone" class="row" hidden>
+ <label id="timezone-label" for="timezone-select" i18n-content="timezone">
+ </label>
+ <select id="timezone-select" i18n-options="timezoneList">
Dan Beam 2014/04/23 17:51:45 <select id="timezone-select" i18n-options="timezon
michaelpg 2014/04/24 01:32:23 Done.
+ </select>
+ </div>
+
+ <div class="button-strip">
+ <button type="submit" id="done" i18n-content="doneButton"></button>
+ </div>
+</div>
+
+<script src="chrome://resources/js/i18n_template2.js"></script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698