Cast: Stop logging kVideoFrameSentToEncoder and rename a couple events.
[chromium-blink-merge.git] / chrome / test / ispy / server / views / list_view.html
blobf6b5dc6c6f6d32db11697053d6beb1648a98a88c
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;
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 %}