| Index: Tools/Scripts/webkitpy/thirdparty/webpagereplay/perftracker/app/suite.html
|
| diff --git a/Tools/Scripts/webkitpy/thirdparty/webpagereplay/perftracker/app/suite.html b/Tools/Scripts/webkitpy/thirdparty/webpagereplay/perftracker/app/suite.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6108acbf243506d160f3786d1399741beab02be9
|
| --- /dev/null
|
| +++ b/Tools/Scripts/webkitpy/thirdparty/webpagereplay/perftracker/app/suite.html
|
| @@ -0,0 +1,62 @@
|
| +<html>
|
| + <head>
|
| + <title>Chromium Perf Tracker</title>
|
| + <link rel="stylesheet" href="styles/style.css">
|
| + <script src="scripts/util.js"></script>
|
| + <script src="jst/util.js" type="text/javascript"></script>
|
| + <script src="jst/jsevalcontext.js" type="text/javascript"></script>
|
| + <script src="jst/jstemplate.js" type="text/javascript"></script>
|
| + </head>
|
| +
|
| + <body onLoad="loadData()">
|
| + <h1><div id="header">Chromium Page Tracker Summary - Test Suite</div></h1>
|
| +
|
| + <script>
|
| + window.data = {};
|
| +
|
| + function loadData() {
|
| + var url = "/json?type=rollup";
|
| + var id = location.queryString()["id"];
|
| + url = url + "&suite_id=" + id;
|
| +
|
| + new XHRGet(url, function(result) {
|
| + data.results = JSON.parse(result);
|
| + var context = new JsEvalContext(data);
|
| + var template = document.getElementById("template");
|
| + jstProcess(context, template);
|
| + });
|
| + }
|
| +
|
| + function filterChanged() {
|
| + loadData();
|
| + }
|
| + </script>
|
| +
|
| + <div id="template">
|
| +
|
| + <table class="sortable">
|
| + <tr>
|
| + <th>Date</th>
|
| + <th>URL</th>
|
| + <th>Iterations</th>
|
| + <th>Start</th>
|
| + <th>Commit</th>
|
| + <th>Doc</th>
|
| + <th>Paint</th>
|
| + <th>PLT</th>
|
| + <th>stddev</th>
|
| + </tr>
|
| + <tr jsselect="results">
|
| + <td><span jseval="$val = '/test_rollup?id=' + suite + '&url=' + $this.url"></span><a jsvalues="href:$val" jscontent="date"></a></td>
|
| + <td><span jscontent="url"></span></td>
|
| + <td class="righttext" jscontent="iterations"></td>
|
| + <td class="righttext" jscontent="start_load_time"></td>
|
| + <td class="righttext" jscontent="commit_load_time"></td>
|
| + <td class="righttext" jscontent="doc_load_time"></td>
|
| + <td class="righttext" jscontent="paint_time"></td>
|
| + <td class="righttext" jscontent="total_time"></td>
|
| + <td class="righttext" jseval="val = total_time_stddev.toFixed(1)" jscontent="val"></td>
|
| + </table>
|
| + </div>
|
| + </body>
|
| +</html>
|
|
|