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

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: Now uses DOM template. 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 i18n-values="dir:textdirection">
flackr 2012/06/11 14:27:36 i18n-values will do nothing if you don't include s
3 <html>
4 <head>
5 <meta charset="utf-8">
6 <title>Gesture Preferences</title>
7 <link rel="stylesheet" href="gesture_config.css">
8 <script src="gesture_config.js"></script>
9 </head>
10 <body>
11 <h2>Gesture Preferences</h2>
12 <hr/>
13 <form>
14 <div id="gesture-form"></div>
15 <div id="gesture-form-row" class="row">
16 <label class="row-label"></label>
17 <input class="row-input" type="number" size="20"/>
18 <div class="row-units"></div>
19 </div>
20
21 <div class="buttons-pane">
22 <button id="resetButton">Reset</button>
23 </div>
24 </form>
25 </body>
26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698