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

Unified 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 all outstanding 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/gesture_config.html
diff --git a/chrome/browser/resources/gesture_config.html b/chrome/browser/resources/gesture_config.html
new file mode 100644
index 0000000000000000000000000000000000000000..e4c6f8e8b825c4f14307e456850972cc71e7e0ef
--- /dev/null
+++ b/chrome/browser/resources/gesture_config.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>Gesture Preferences</title>
+ <link rel="stylesheet" href="gesture_config.css">
+ <script src="gesture_config.js"></script>
+</head>
+<body>
+<h2>Gesture Preferences</h2>
+<hr>
+<form>
+ <div id="gesture-form"></div>
+ <div class="buttons-pane">
+ <button id="resetButton">Reset</button>
James Hawkins 2012/06/12 18:04:15 nit: IDs use dash-form.
Kevin Greer 2012/06/12 18:10:02 changed On 2012/06/12 18:04:15, James Hawkins wrot
+ </div>
+</form>
+<div hidden>
+ <div id="gesture-form-row" class="row">
+ <label class="row-label"></label>
+ <input class="row-input" type="number" size="20">
+ <div class="row-units"></div>
+ </div>
+</div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698