Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Side by Side Diff: tools/telemetry/support/html_output/results-template.html

Issue 26179009: [telemetry] Restore --reset-html-results option and rename to --reset-results (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Overwrote pagerunnertest fix with last patch. Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | tools/telemetry/telemetry/page/html_page_measurement_results.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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-results to clear all runs
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
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>
OLDNEW
« no previous file with comments | « no previous file | tools/telemetry/telemetry/page/html_page_measurement_results.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698