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

Side by Side Diff: chrome/browser/resources/gesture_config.html

Issue 10532005: Initial check-in of gesture config WebUI. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Addressed lates review comments. Created 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>Gesture Preferences</title>
James Hawkins 2012/06/12 15:48:14 Title needs to be internationalized.
Kevin Greer 2012/06/12 18:01:53 This is an unsupported feature which does not need
6 <link rel="stylesheet" href="gesture_config.css">
7 <script src="gesture_config.js"></script>
8 </head>
9 <body>
10 <h2>Gesture Preferences</h2>
James Hawkins 2012/06/12 15:48:14 Internationalized.
Kevin Greer 2012/06/12 18:01:53 Not needed. On 2012/06/12 15:48:14, James Hawkins
11 <hr/>
James Hawkins 2012/06/12 15:48:14 No trailing slash on self-closing blocks.
Kevin Greer 2012/06/12 18:01:53 Removed. On 2012/06/12 15:48:14, James Hawkins wro
12 <form>
13 <div id="gesture-form"></div>
14
James Hawkins 2012/06/12 15:48:14 nit: Remove blank line.
Kevin Greer 2012/06/12 18:01:53 Done.
15 <div class="buttons-pane">
16 <button id="resetButton">Reset</button>
James Hawkins 2012/06/12 15:48:14 Internationalized.
Kevin Greer 2012/06/12 18:01:53 Not needed. On 2012/06/12 15:48:14, James Hawkins
17 </div>
18 </form>
19 <div hidden>
20 <div id="gesture-form-row" class="row">
21 <label class="row-label"></label>
James Hawkins 2012/06/12 15:48:14 nit: <label> needs a for= attribute specified.
Kevin Greer 2012/06/12 18:01:53 Done (in gesture_config.js).
22 <input class="row-input" type="number" size="20"/>
James Hawkins 2012/06/12 15:48:14 No trailing slash on self-closing blocks: <input
Kevin Greer 2012/06/12 18:01:53 Removed. On 2012/06/12 15:48:14, James Hawkins wro
23 <div class="row-units"></div>
24 </div>
25 </div>
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698