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

Side by Side Diff: chrome/browser/resources/chromeos/switch_access/options.html

Issue 2760453002: Creating options page and storing preferences. (Closed)
Patch Set: Fixing change made to compiled_resources2.gyp Created 3 years, 9 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 <!-- Copyright 2017 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. -->
4 <!DOCTYPE html>
5 <html>
6 <head>
7 <title>Switch Access Options</title>
8 <link href="options.css" rel="stylesheet" type="text/css">
9 <script type="text/javascript" src="options.js"></script>
10 </head>
11 <body>
12 <h1>Switch Access Options</h1>
13 <h2>Auto-Scan</h2>
14 <div>
15 <label>
16 <input id="enableAutoScan" type="checkbox">
17 Enable auto-scan
18 </label>
19 </div>
20 <div>
21 <label id="autoScanTimeLabel">
22 <span>Set auto-scan time in seconds:</span>
23 <input id="autoScanTime" type="number" min=".05" step=".05" value="1">
24 </label>
25 </div>
26 </body>
27 </html>
28
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698