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..672102d67bba2eca8f2bd1dd68d5d3a140a7c15e |
| --- /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> |
|
Dan Beam
2014/04/25 00:05:49
^ can you move any of these to the bottom of the p
michaelpg
2014/04/25 20:05:14
Done. Doesn't seem to help much though. But I'm no
|
| +</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 id="date" type="date"> |
| + <input id="time" type="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 id="done" type="submit" i18n-content="doneButton"></button> |
| + </div> |
| +</div> |
| + |
| +<script src="chrome://resources/js/i18n_template2.js"></script> |
| +</body> |
| +</html> |