| Index: chrome/test/functional/ispy/server/views/main_view.html
|
| diff --git a/chrome/test/functional/ispy/server/views/main_view.html b/chrome/test/functional/ispy/server/views/main_view.html
|
| index 4bc95ad7a8cc0e42bceeb396732ced6289dca247..f55997ed04b54327ac2ebbc15bc319523e21ad92 100644
|
| --- a/chrome/test/functional/ispy/server/views/main_view.html
|
| +++ b/chrome/test/functional/ispy/server/views/main_view.html
|
| @@ -24,8 +24,25 @@
|
| height: 350px;
|
| }
|
| </style>
|
| +
|
| + <script language="javascript">
|
| + var confirmSubmit = function() {
|
| + return confirm("These screenshots 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="Rebaseline Expectations"/>
|
| + </form>
|
| + <br>
|
| + {% endif %}
|
| + {% if not comparisons %}
|
| + <h2>No failures.</h2>
|
| + {% endif %}
|
| {% for comp in comparisons %}
|
| <div class="row">
|
| <div class="cell">
|
|
|