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

Unified Diff: build/android/pylib/instrumentation/render_test.html.jinja

Issue 2884833002: Add vertical-align:top to render test images. (Closed)
Patch Set: Created 3 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/instrumentation/render_test.html.jinja
diff --git a/build/android/pylib/instrumentation/render_test.html.jinja b/build/android/pylib/instrumentation/render_test.html.jinja
index 60cefcab141e0279b530c5570c0bf41439d49006..0f130bcdf34d90fdc72869bbc94a94d845af3e2d 100644
--- a/build/android/pylib/instrumentation/render_test.html.jinja
+++ b/build/android/pylib/instrumentation/render_test.html.jinja
@@ -15,16 +15,20 @@
</head>
<body>
<table>
- <tr>
- <th>Failure</th>
- <th>Golden</th>
- <th>Diff</th>
- </tr>
- <tr onclick="toggleZoom()">
- <td><img src="{{ failure_link }}" style="width: 100%" /></td>
- <td><img src="{{ golden_link }}" style="width: 100%" /></td>
- <td><img src="{{ diff_link }}" style="width: 100%" /></td>
- </tr>
+ <thead>
+ <tr>
+ <th>Failure</th>
+ <th>Golden</th>
+ <th>Diff</th>
+ </tr>
+ </thead>
+ <tbody style="vertical-align: top">
+ <tr onclick="toggleZoom()">
+ <td><img src="{{ failure_link }}" style="width: 100%" /></td>
+ <td><img src="{{ golden_link }}" style="width: 100%" /></td>
+ <td><img src="{{ diff_link }}" style="width: 100%" /></td>
+ </tr>
+ </tbody>
</table>
</body>
</html>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698