| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE HTML> |
| 2 <html> |
| 3 <head> |
| 4 <meta charset="utf-8"> |
| 5 <title>Device Emulator</title> |
| 6 <link rel="stylesheet" href="device_emulator.css"> |
| 7 <script src="chrome://resources/js/cr.js"></script> |
| 8 <script src="chrome://resources/js/load_time_data.js"></script> |
| 9 <script src="chrome://resources/js/util.js"></script> |
| 10 <script src="strings.js"></script> |
| 11 <script src="device_emulator.js"></script> |
| 12 </head> |
| 13 <body> |
| 14 <div class="container"> |
| 15 <h1>ChromeOS Device Emulator</h1> |
| 16 <hr> |
| 17 |
| 18 <div class="form-group"> |
| 19 <div class="group-header"> |
| 20 <h2>Battery/Power Settings</h2> |
| 21 </div> |
| 22 <div class="group-body"> |
| 23 <form id="power-settings-form"> |
| 24 <div class="control-group"> |
| 25 <label> |
| 26 Battery Present |
| 27 <input id="battery-present-checkbox" type="checkbox"> |
| 28 </label> |
| 29 </div> |
| 30 |
| 31 <div class="control-group"> |
| 32 <label> |
| 33 Battery Percentage |
| 34 <input id="battery-percent-slider" type="range" min="0" max="100"> |
| 35 </label> |
| 36 <input id="battery-percent-text" type="number" min="0" max="100"> |
| 37 </div> |
| 38 |
| 39 <div class="control-group"> |
| 40 <label> |
| 41 Power Source |
| 42 <select id="power-source-select"> |
| 43 </select> |
| 44 </label> |
| 45 </div> |
| 46 |
| 47 <div class="control-group"> |
| 48 <label> |
| 49 <p>Set Battery Timing</p> |
| 50 <label> |
| 51 <p> |
| 52 <input id="time-until-empty-radio" type="radio" |
| 53 name="time-until-radio"> |
| 54 Time Until Battery Empty |
| 55 </p> |
| 56 </label> |
| 57 |
| 58 <label> |
| 59 <p> |
| 60 <input id="time-until-full-radio" type="radio" |
| 61 name="time-until-radio"> |
| 62 Time Until Battery Full |
| 63 </p> |
| 64 </label> |
| 65 <input id="time-until-text" type="text"> |
| 66 |
| 67 </label> |
| 68 </div> |
| 69 |
| 70 </form> |
| 71 </div> |
| 72 </div> |
| 73 </div> |
| 74 </body> |
| 75 </html> |
| OLD | NEW |