Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| 10 <script src="chrome://resources/js/cr.js"></script> | |
| 11 <script src="chrome://resources/js/load_time_data.js"></script> | |
| 12 <script src="chrome://resources/js/util.js"></script> | |
| 13 | |
| 14 <script src="strings.js"></script> | |
| 15 <script src="set_time.js"></script> | |
| 16 </head> | |
| 17 | |
| 18 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | |
| 19 <div id="set-time"> | |
| 20 <h2 i18n-content="setTimeTitle"></h2> | |
| 21 <p id="prompt" i18n-content="prompt" class="row"></p> | |
| 22 | |
| 23 <div class="timeControl"> | |
| 24 <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.
| |
| 25 <input type="time" id="time"> | |
| 26 </div> | |
| 27 | |
| 28 <div id="timezone" class="row" hidden> | |
| 29 <label id="timezone-label" for="timezone-select" i18n-content="timezone"> | |
| 30 </label> | |
| 31 <select id="timezone-select" i18n-options="timezoneList"></select> | |
| 32 </div> | |
| 33 | |
| 34 <div class="button-strip"> | |
| 35 <button type="submit" id="done" i18n-content="doneButton"></button> | |
| 36 </div> | |
| 37 </div> | |
| 38 | |
| 39 <script src="chrome://resources/js/i18n_template2.js"></script> | |
| 40 </body> | |
| 41 </html> | |
| OLD | NEW |