| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 | 2 |
| 3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. --> | 5 found in the LICENSE file. --> |
| 6 | 6 |
| 7 <!-- This page uses Flot version 0.7 in compressed form for efficiency. | 7 <!-- This page uses Flot version 0.7 in compressed form for efficiency. |
| 8 Readable Flot source is available at http://code.google.com/p/flot/ | 8 Readable Flot source is available at http://code.google.com/p/flot/ |
| 9 Good caliber Flot API docs are at: http://people.iola.dk/olau/flot/API.txt | 9 Good caliber Flot API docs are at: http://people.iola.dk/olau/flot/API.txt |
| 10 as of 6/2012. --> | 10 as of 6/2012. --> |
| 11 | 11 |
| 12 <html> | 12 <html> |
| 13 <head> | 13 <head> |
| 14 <link rel="stylesheet" type="text/css" href="chart.css"/> | 14 <link rel="stylesheet" type="text/css" href="chart.css"> |
| 15 </head> | 15 </head> |
| 16 <body> | 16 <body> |
| 17 <div id="choose-block"> | 17 <div id="choose-block"> |
| 18 <div id="choose-metrics"> | 18 <div id="choose-metrics"> |
| 19 <h2>Choose Metrics</h2> | 19 <h2>Choose Metrics</h2> |
| 20 </div> | 20 </div> |
| 21 <div id="choose-events"> | 21 <div id="choose-events"> |
| 22 <h2>Choose Events</h2> | 22 <h2>Choose Events</h2> |
| 23 </div> | 23 </div> |
| 24 <div class="spacer"></div> | 24 <div class="spacer"></div> |
| 25 <div id="choose-time-range"> | 25 <div id="choose-time-range"> |
| 26 <h2>Choose Time Range</h2> | 26 <h2>Choose Time Range</h2> |
| 27 </div> | 27 </div> |
| 28 </div> | 28 </div> |
| 29 <div id="charts"></div> | 29 <div id="charts"></div> |
| 30 <div id="templates" hidden> | 30 <div id="templates" hidden> |
| 31 <div id="label-template" class="event-label"></div> | 31 <div id="label-template" class="event-label"></div> |
| 32 <div id="checkbox-template" class="checkbox"> | 32 <div id="checkbox-template" class="checkbox"> |
| 33 <label> | 33 <label> |
| 34 <input type="checkbox"></input> | 34 <input type="checkbox"></input> |
| 35 <span>Change this label</span> | 35 <span>Change this label</span> |
| 36 </label> | 36 </label> |
| 37 </div> | 37 </div> |
| 38 <div id="radio-template" class="radio"> | 38 <div id="radio-template" class="radio"> |
| 39 <label> | 39 <label> |
| 40 <input type="radio" name="time-range"/> | 40 <input type="radio" name="time-range"> |
| 41 <span>Change this label</span> | 41 <span>Change this label</span> |
| 42 </label> | 42 </label> |
| 43 </div> | 43 </div> |
| 44 </div> | 44 </div> |
| 45 <script src="chrome://resources/js/cr.js"></script> | 45 <script src="chrome://resources/js/cr.js"></script> |
| 46 <script src="chrome://resources/js/util.js"></script> | 46 <script src="chrome://resources/js/util.js"></script> |
| 47 <script src="jquery.js"></script> | 47 <script src="jquery.js"></script> |
| 48 <script src="flot.js"></script> | 48 <script src="flot.js"></script> |
| 49 <script src="chart.js"></script> | 49 <script src="chart.js"></script> |
| 50 </body> | 50 </body> |
| 51 </html> | 51 </html> |
| OLD | NEW |