Chromium Code Reviews| 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> |