repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cast: Stop logging kVideoFrameSentToEncoder and rename a couple events.
[chromium-blink-merge.git]
/
chrome
/
test
/
ispy
/
server
/
views
/
list_view.html
blob
f6b5dc6c6f6d32db11697053d6beb1648a98a88c
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:
1
px solid #AAA;
11
width:
400
px;
12
margin:
5
px;
13
padding:
5
px;
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 %}