Commit 8ac98faa authored by Peter E Conn's avatar Peter E Conn Committed by Commit Bot

📷 Display No Golden when golden is missing on Render Tests.

Bug: 739719
Change-Id: I24f44759324ae715a9d8abbd71753f0d3e85ab5b
Reviewed-on: https://chromium-review.googlesource.com/581189Reviewed-by: default avatarPeter Conn <peconn@chromium.org>
Reviewed-by: default avatarBernhard Bauer <bauerb@chromium.org>
Reviewed-by: default avatarJohn Budorick <jbudorick@chromium.org>
Commit-Queue: Peter Conn <peconn@chromium.org>
Cr-Commit-Position: refs/heads/master@{#488646}
parent 0d166660
...@@ -26,8 +26,12 @@ ...@@ -26,8 +26,12 @@
<tbody style="vertical-align: top"> <tbody style="vertical-align: top">
<tr onclick="toggleZoom()"> <tr onclick="toggleZoom()">
<td><img src="{{ failure_link }}" style="width: 100%" /></td> <td><img src="{{ failure_link }}" style="width: 100%" /></td>
{% if golden_link %}
<td><img src="{{ golden_link }}" style="width: 100%" /></td> <td><img src="{{ golden_link }}" style="width: 100%" /></td>
<td><img src="{{ diff_link }}" style="width: 100%" /></td> <td><img src="{{ diff_link }}" style="width: 100%" /></td>
{% else %}
<td>No Golden Image.</td>
{% endif %}
</tr> </tr>
</tbody> </tbody>
</table> </table>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment