Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Telemetry Performance Test Results</title> | 4 <title>Telemetry Performance Test Results</title> |
| 5 <style type="text/css"> | 5 <style type="text/css"> |
| 6 | 6 |
| 7 section { | 7 section { |
| 8 background: white; | 8 background: white; |
| 9 padding: 10px; | 9 padding: 10px; |
| 10 position: relative; | 10 position: relative; |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 181 } | 181 } |
| 182 | 182 |
| 183 </style> | 183 </style> |
| 184 </head> | 184 </head> |
| 185 <body onload="init()"> | 185 <body onload="init()"> |
| 186 <div style="padding: 0 10px; white-space: nowrap;"> | 186 <div style="padding: 0 10px; white-space: nowrap;"> |
| 187 Result <span id="time-memory" class="checkbox"><span class="checked">Time</span> <span>Memory</span></span> | 187 Result <span id="time-memory" class="checkbox"><span class="checked">Time</span> <span>Memory</span></span> |
| 188 Reference <span id="reference" class="checkbox"></span> | 188 Reference <span id="reference" class="checkbox"></span> |
| 189 Style <span id="scatter-line" class="checkbox"><span class="checked">Scatter</sp an><span>Line</span></span> | 189 Style <span id="scatter-line" class="checkbox"><span class="checked">Scatter</sp an><span>Line</span></span> |
| 190 <span class="checkbox"><span class="checked" id="undelete">Undelete</span></span > | 190 <span class="checkbox"><span class="checked" id="undelete">Undelete</span></span > |
| 191 Run Telemetry with --reset-html-results to clear all runs | |
|
tonyg
2013/10/16 18:09:21
Oops, don't forget to update this (I un-cq'd)
shatch
2013/10/16 18:13:25
Oops thanks, updated!
| |
| 191 </div> | 192 </div> |
| 192 <table id="container"></table> | 193 <table id="container"></table> |
| 193 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js">< /script> | 194 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js">< /script> |
| 194 <script> | 195 <script> |
| 195 %plugins% | 196 %plugins% |
| 196 </script> | 197 </script> |
| 197 <script> | 198 <script> |
| 198 function TestResult(metric, values, associatedRun) { | 199 function TestResult(metric, values, associatedRun) { |
| 199 if (values[0] instanceof Array) { | 200 if (values[0] instanceof Array) { |
| 200 var flattenedValues = []; | 201 var flattenedValues = []; |
| (...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 791 } else { | 792 } else { |
| 792 $('#undelete').hide(); | 793 $('#undelete').hide(); |
| 793 } | 794 } |
| 794 } | 795 } |
| 795 | 796 |
| 796 </script> | 797 </script> |
| 797 <script id="results-json" type="application/json">%json_results%</script> | 798 <script id="results-json" type="application/json">%json_results%</script> |
| 798 <script id="units-json" type="application/json">%json_units%</script> | 799 <script id="units-json" type="application/json">%json_units%</script> |
| 799 </body> | 800 </body> |
| 800 </html> | 801 </html> |
| OLD | NEW |