summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/gesture_config.html
blob: a1aec147b89d4dc7bd951a8f37d1a5a9c4a4da12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!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>
<form>
  <div id="gesture-form"></div>
  <div class="buttons-pane">
    <button id="reset-button">Reset</button>
  </div>
</form>
<div id="section-template">
  <h2 class="section-title"></h2>
  <div class="section-properties">
    <!-- Section rows are inserted here. -->
  </div>
</div>
<div id="section-row-template" class="row">
  <label class="row-label"></label>
  <div class="row-input">
    <input class="input" type="number" size="20">
  </div>
  <div class="row-units"></div>
</div>
</body>
</html>