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..e75c8391d276edcf5a8f83d9bd738c580203a50c |
| --- /dev/null |
| +++ b/chrome/browser/resources/chromeos/set_time.html |
| @@ -0,0 +1,41 @@ |
| +<!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> |
| +</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"> |
|
Nikita (slow)
2014/04/24 14:31:53
nit: Place id attribute first for all elements in
michaelpg
2014/04/24 18:52:32
Done.
|
| + <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"></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> |