OLD | NEW |
1 <!-- | 1 <!-- |
2 An option page for configuring notifications. | 2 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 | 3 Use of this source code is governed by a BSD-style license that can be |
4 Copyright 2010 the Chromium Authors | 4 found in the LICENSE file. |
5 | |
6 Use of this source code is governed by a BSD-style license that can be found | |
7 in the "LICENSE" file. | |
8 | 5 |
9 Brian Kennish <bkennish@chromium.org> | 6 Brian Kennish <bkennish@chromium.org> |
| 7 |
| 8 An option page for configuring notifications. |
10 --> | 9 --> |
11 <!doctype html> | 10 <!doctype html> |
12 <html> | 11 <html> |
13 <head> | 12 <head> |
14 <title>Notification Demo</title> | 13 <title>Notification Demo</title> |
15 <link href="style.css" rel="stylesheet" type="text/css"> | 14 <link href="style.css" rel="stylesheet" type="text/css"> |
16 <script src="options.js"></script> | 15 <script src="options.js"></script> |
17 </head> | 16 </head> |
18 <body> | 17 <body> |
19 <h1> | 18 <h1> |
(...skipping 13 matching lines...) Expand all Loading... |
33 <option>10</option> | 32 <option>10</option> |
34 <option>15</option> | 33 <option>15</option> |
35 <option>20</option> | 34 <option>20</option> |
36 <option>25</option> | 35 <option>25</option> |
37 <option>30</option> | 36 <option>30</option> |
38 </select> | 37 </select> |
39 minute(s). | 38 minute(s). |
40 </form> | 39 </form> |
41 </body> | 40 </body> |
42 </html> | 41 </html> |
OLD | NEW |