| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <script src="profiler.js"></script> | 5 <script src="profiler.js"></script> |
| 6 <script src="chrome://resources/js/util.js"></script> | 6 <script src="chrome://resources/js/util.js"></script> |
| 7 | 7 |
| 8 <style> | 8 <style> |
| 9 | 9 |
| 10 body { | 10 body { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 cursor: pointer; | 44 cursor: pointer; |
| 45 } | 45 } |
| 46 | 46 |
| 47 /* | 47 /* |
| 48 * This is row which displays aggregate totals for each column. | 48 * This is row which displays aggregate totals for each column. |
| 49 */ | 49 */ |
| 50 .results-table .aggregator-row { | 50 .results-table .aggregator-row { |
| 51 background: #FFCC99; | 51 background: #FFCC99; |
| 52 } | 52 } |
| 53 | 53 |
| 54 /* |
| 55 * This is the row at the end of tables which explains how many rows were shown, |
| 56 * and how many were hidden. |
| 57 */ |
| 58 .results-table .truncation-row { |
| 59 background: #eee; |
| 60 } |
| 61 |
| 54 /*---------------------------------------------------------------------------*/ | 62 /*---------------------------------------------------------------------------*/ |
| 55 | 63 |
| 56 /* | 64 /* |
| 57 * When grouping data, the table for each bucket is wrapped in a DIV with this | 65 * When grouping data, the table for each bucket is wrapped in a DIV with this |
| 58 * class. Used to add a bit of spacing between groups. | 66 * class. Used to add a bit of spacing between groups. |
| 59 */ | 67 */ |
| 60 .group-container { | 68 .group-container { |
| 61 margin-top: 2ex; | 69 margin-top: 2ex; |
| 62 margin-bottom: 2ex; | 70 margin-bottom: 2ex; |
| 63 } | 71 } |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 115 |
| 108 <hr/> | 116 <hr/> |
| 109 | 117 |
| 110 <div id='results-div'></div> | 118 <div id='results-div'></div> |
| 111 | 119 |
| 112 <!-- TODO(eroman): This should only be a short-lived solution, | 120 <!-- TODO(eroman): This should only be a short-lived solution, |
| 113 which will eventually be superceded by snapshotting --> | 121 which will eventually be superceded by snapshotting --> |
| 114 <span id=reset-data-link class=pseudo-link>[Reset tracking data]</span> | 122 <span id=reset-data-link class=pseudo-link>[Reset tracking data]</span> |
| 115 </body> | 123 </body> |
| 116 </html> | 124 </html> |
| OLD | NEW |