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

Unified Diff: gm/rebaseline_server/static/live-view.html

Issue 424263005: teach rebaseline_server to generate diffs of rendered SKPs (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Ravi comments Created 6 years, 4 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: gm/rebaseline_server/static/live-view.html
diff --git a/gm/rebaseline_server/static/view.html b/gm/rebaseline_server/static/live-view.html
similarity index 98%
copy from gm/rebaseline_server/static/view.html
copy to gm/rebaseline_server/static/live-view.html
index 0e964d1e980a3d106f01f2e6db00f44a54a95fe1..9e22ed4998c2c02c24738bdb2b9102f86833db4c 100644
--- a/gm/rebaseline_server/static/view.html
+++ b/gm/rebaseline_server/static/live-view.html
@@ -6,7 +6,7 @@
<title ng-bind="windowTitle"></title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js"></script>
<script src="constants.js"></script>
- <script src="loader.js"></script>
+ <script src="live-loader.js"></script>
<link rel="stylesheet" href="view.css">
</head>
@@ -19,7 +19,12 @@
</h2>
<em ng-show="!readyToDisplay">
- Loading results from <a href="{{resultsToLoad}}">{{resultsToLoad}}</a> ...
+ Loading results of query:
+ <ul>
+ <li>setA: {{setADir}}</li>
+ <li>setB: {{setBDir}}</li>
+ </ul>
+ <br>
{{loadingMessage}}
</em>
@@ -40,12 +45,10 @@
</div>
<div ng-show="header[constants.KEY__HEADER__TIME_UPDATED]">
- These results, from raw JSON file
- <a href="{{resultsToLoad}}">{{resultsToLoad}}</a>, current as of
+ setA: {{setADir}}<br>
+ setB: {{setBDir}}<br>
+ These results current as of
{{localTimeString(header[constants.KEY__HEADER__TIME_UPDATED])}}
- <br>
- To see other sets of results (all results, failures only, etc.),
- <a href="/">click here</a>
</div>
<div class="tab-wrapper"><!-- tabs -->

Powered by Google App Engine
This is Rietveld 408576698