Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(594)

Side by Side Diff: chrome/browser/resources/chromeos/emulator/device_emulator.html

Issue 1205753002: Create chrome://device-emulator and add the ability to get a battery percentage and send an updated… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Create chrome://device-emulator and add the ability to get a battery percentage and send an updated… Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
15 <h1>ChromeOS Device Emulator</h1>
16 <hr>
17
18 <div>
19 <div>
20 <h2>Battery/Power Settings</h2>
21 </div>
22 <div>
23 <form id="power-settings-form">
24 <label>
25 Battery Percentage
26 <input id="battery-percent-slider" type="range" min="0" max="100">
27 </label>
28 <input id="battery-percent-text" type="number" min="0" max="100">
29 </form>
30 </div>
31 </div>
32 </div>
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698