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

Unified Diff: chrome/test/functional/ispy/server/views/main_view.html

Issue 222873002: Remove pyauto tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync Created 6 years, 9 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 | « chrome/test/functional/ispy/server/views/list_view.html ('k') | chrome/test/functional/media/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/functional/ispy/server/views/main_view.html
===================================================================
--- chrome/test/functional/ispy/server/views/main_view.html (revision 261231)
+++ chrome/test/functional/ispy/server/views/main_view.html (working copy)
@@ -1,78 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>{{ test_run }} failures</title>
- <style>
- .image {
- max-height: 325px;
- max-width: 325px;
- }
- .cell {
- padding-right: 25px;
- padding-left: 25px;
- float: left;
- width: 20%;
- }
- .imagelink {
- border-width: 0px;
- }
- .info {
- padding-bottom: 25px;
- }
- .row {
- padding-top: 10px;
- padding-bottom: 10px;
- border-bottom: 2px solid #888;
- height: 350px;
- }
- </style>
-
- <script language="javascript">
- var confirmSubmit = function() {
- return confirm("The screenshots generated with this version of chrome will be used as the expected images for future comparisions. Are you sure?");
- }
- </script>
- </head>
- <body>
- <h3>Test Run: {{ test_run }}</h3>
- {% if can_rebaseline %}
- <form action="/rebaseline" method="post" onsubmit="return confirmSubmit();">
- <input type="hidden" name="test_run" value="{{ test_run }}"/>
- <input type="submit" value="Set as LKGR"/>
- </form>
- <br>
- {% endif %}
- {% if not comparisons %}
- <h2>No failures.</h2>
- {% endif %}
- {% for comp in comparisons %}
- <div class="row">
- <div class="cell">
- Diff&nbsp;&nbsp;({{ "%.1f"|format(comp['percent_different']) }}%)<br>
- <a class="imagelink" href="{{ comp['diff'] }}">
- <img class="image" src={{ comp['diff'] }}>
- </a>
- </div>
- <div class="cell">
- Expected<br>
- <a class="imagelink" href="{{ comp['expected'] }}">
- <img class="image" src={{ comp['expected'] }}>
- </a>
- </div>
- <div class="cell">
- Actual<br>
- <a class="imagelink" href="{{ comp['actual'] }}">
- <img class="image" src={{ comp['actual'] }}>
- </a>
- </div>
- <div class="cell">
- <br>
- <div class="info">
- {{ comp['expectation'] }}<br>
- <a href='/debug_view?test_run={{ comp['test_run'] }}&expectation={{ comp['expectation'] }}'>Debug View</a>
- </div>
- </div>
- </div>
- {% endfor %}
- </body>
-</html>
« no previous file with comments | « chrome/test/functional/ispy/server/views/list_view.html ('k') | chrome/test/functional/media/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698