| 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 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 6 |
| 5 <script src="profiler.js"></script> | 7 <script src="profiler.js"></script> |
| 6 <script src="chrome://resources/js/util.js"></script> | 8 <script src="chrome://resources/js/util.js"></script> |
| 7 | 9 |
| 8 <style> | 10 <style> |
| 9 | 11 |
| 10 body { | |
| 11 font-family: sans-serif; | |
| 12 font-size: 80%; | |
| 13 } | |
| 14 | |
| 15 /* | 12 /* |
| 16 * The following styles are for a TABLE that uses a thin collapsed border, and | 13 * The following styles are for a TABLE that uses a thin collapsed border, and |
| 17 * has a blue heading. When you hover over rows, they turn yellow. | 14 * has a blue heading. When you hover over rows, they turn yellow. |
| 18 */ | 15 */ |
| 19 table.results-table { | 16 table.results-table { |
| 20 border-collapse:collapse; | 17 border-collapse:collapse; |
| 21 } | 18 } |
| 22 | 19 |
| 23 table.results-table, | 20 table.results-table, |
| 24 .results-table th, | 21 .results-table th, |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 | 144 |
| 148 <div id='results-div'></div> | 145 <div id='results-div'></div> |
| 149 | 146 |
| 150 <!-- TODO(eroman): This should only be a short-lived solution, | 147 <!-- TODO(eroman): This should only be a short-lived solution, |
| 151 which will eventually be superceded by snapshotting --> | 148 which will eventually be superceded by snapshotting --> |
| 152 <span id=reset-data-link class=pseudo-link>[Reset tracking data]</span> | 149 <span id=reset-data-link class=pseudo-link>[Reset tracking data]</span> |
| 153 | 150 |
| 154 <a style="display: none" id="download-anchor" download="profile.json"></a> | 151 <a style="display: none" id="download-anchor" download="profile.json"></a> |
| 155 </body> | 152 </body> |
| 156 </html> | 153 </html> |
| OLD | NEW |