1<!DOCTYPE HTML>
2<html>
3<head>
4  <meta charset="utf-8">
5  <title>Gesture Preferences</title>
6  <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
7  <link rel="stylesheet" href="chrome://resources/css/widgets.css">
8  <link rel="stylesheet" href="gesture_config.css">
9  <script src="gesture_config.js"></script>
10</head>
11<body>
12<form>
13  <div class="buttons-pane">
14    <button id="reset-all-button">Reset All</button>
15  </div>
16  <div id="gesture-form"></div>
17</form>
18<div id="section-template">
19  <h2 class="section-title"></h2>
20  <div class="section-properties">
21    <!-- Section rows are inserted here. -->
22  </div>
23</div>
24<div id="section-row-template" class="row">
25  <label class="row-label"></label>
26  <div class="row-input">
27    <input class="input" type="number" size="20">
28  </div>
29  <div class="row-units"></div>
30  <button class="row-reset">Reset</button>
31</div>
32</body>
33</html>
34