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

Side by Side Diff: chrome/test/functional/ispy/server/views/list_view.html

Issue 222873002: Remove pyauto tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 {% autoescape on %}
3 <html>
4 <head>
5 <title>I-Spy Test Runs</title>
6 <style>
7 #container {
8 display: table;
9 background-color:#DDD;
10 border: 1px solid #AAA;
11 width: 400px;
12 margin: 5px;
13 padding: 5px;
14 }
15 </style>
16 </head>
17 <body>
18 <h3>Test Runs</h3>
19 <div id="container">
20 {% for link in links %}
21 <div>
22 <a href="{{ link[1] }}">{{ link[0] }}</a>
23 </div>
24 {% endfor %}
25 </div>
26 </body>
27 </html>
28 {% endautoescape %}
OLDNEW
« no previous file with comments | « chrome/test/functional/ispy/server/views/debug_view.html ('k') | chrome/test/functional/ispy/server/views/main_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698