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

Unified Diff: tools/skpdiff/viewer.html

Issue 20654006: download and rebaseline images using server (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: fix other missing filepath Created 7 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
« no previous file with comments | « tools/skpdiff/skpdiff_server.py ('k') | tools/skpdiff/viewer_style.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/skpdiff/viewer.html
diff --git a/tools/skpdiff/viewer.html b/tools/skpdiff/viewer.html
index bd198b24b4842b6dbd1d4d8cb82c0e47934768d0..46c5871ae1716da1b18e5295a5fccd7aa9275925 100644
--- a/tools/skpdiff/viewer.html
+++ b/tools/skpdiff/viewer.html
@@ -27,7 +27,7 @@
<table>
<thead>
<tr>
- <td>Baseline Image</td>
+ <td>Expected Image</td>
<td>Actual Image</td>
<td>Results</td>
</tr>
@@ -37,15 +37,18 @@
Loops through every record and crates a row for it. This sorts based on the whichever
metric the user chose, and places a limit on the max number of records to show.
-->
- <tr ng-repeat="record in records | orderBy:sortingDiffer | limitTo:500">
- <td><swap-img left-src="{{ record.baselinePath }}"
- right-src="{{ record.testPath }}"
- side="left"
- class="gm-image left-image" /></td>
- <td><swap-img left-src="{{ record.baselinePath }}"
- right-src="{{ record.testPath }}"
- side="right"
- class="gm-image right-image" /></td>
+ <tr ng-repeat="record in records | orderBy:sortingDiffer | limitTo:500"
+ class="{{ record.cssClasses }}">
+ <td ng-click="setHashOf(record.baselinePath, record)">
+ <swap-img left-src="{{ record.baselinePath }}"
+ right-src="{{ record.testPath }}"
+ side="left"
+ class="gm-image left-image" /></td>
+ <td ng-click="setHashOf(record.testPath, record)">
+ <swap-img left-src="{{ record.baselinePath }}"
+ right-src="{{ record.testPath }}"
+ side="right"
+ class="gm-image right-image" /></td>
<td>
<div ng-repeat="diff in record.diffs"
ng-mouseover="highlight(diff.differName)"
« no previous file with comments | « tools/skpdiff/skpdiff_server.py ('k') | tools/skpdiff/viewer_style.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698