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

Unified Diff: Tools/Scripts/webkitpy/thirdparty/webpagereplay/perftracker/app/suite.html

Issue 18418010: Check in the thirdparty libs needed for webkitpy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698