-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathtestharness.css
58 lines (45 loc) · 842 Bytes
/
testharness.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
html {
font-family:DejaVu Sans, Bitstream Vera Sans, Arial, Sans;
}
section#summary {
margin-bottom:1em;
}
table#results {
border-collapse:collapse;
}
table#results th {
padding:0;
padding-bottom:0.5em;
border-bottom:medium solid black;
}
table#results td {
padding:1em;
padding-bottom:0.5em;
border-bottom:thin solid black;
}
td.pass {
color:green;
}
td.fail {
color:red;
}
td.timeout {
color:red;
}
td.notrun {
color:blue;
}
.pass .fail .timeout .notrun {
font-variant:small-caps;
}
table#results span {
display:block;
}
table#results span.expected {
font-family:DejaVu Sans Mono, Bitstream Vera Sans Mono, Monospace;
white-space:pre;
}
table#results span.actual {
font-family:DejaVu Sans Mono, Bitstream Vera Sans Mono, Monospace;
white-space:pre;
}