blob: e006e812de4dfb3f1024788e1473a7136d958395 (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
html.fail {
background: #f66;
}
html.pass {
background: #6f6;
}
html.needs_check {
background: #99f;
}
body {
font-size: small;
font-family: sans-serif;
color: black;
}
a:link {
color: #00c;
}
a:visited {
color: #808;
}
body.framed {
font-size: x-small;
}
h1 {
font-size: larger;
margin: 0;
padding-left: 0.5em;
text-indent: -0.5em;
}
p {
margin: 0;
}
p.notes {
margin-bottom: 0.5em;
font-style: italic;
}
ul {
margin: 0;
margin-bottom: 0.5em;
padding: 0;
padding-left: 1em;
}
.refs {
font-style: italic;
margin-bottom: 0.5em;
}
.refs ul {
display: inline;
margin: 0;
padding: 0;
}
.refs li {
display: inline;
list-style-type: none;
margin: 0;
padding: 0;
}
canvas {
display: none;
visibility: hidden;
border: 2px #f0f solid;
background: url(../images/background.png);
}
img.expected {
display: none;
border: 2px #f0f solid;
background: url(../images/background.png);
}
iframe {
border: 2px #f0f solid;
}
.output {
display: none;
}
.show_output .output, .needs_check .output {
display: block !important;
visibility: visible !important;
}
.show_output #show_output {
display: none;
}
.resource {
visibility: hidden;
height: 0;
}
.fallback {
font-size: 2em;
font-weight: bold;
color: #a00;
}
html.minimal body {
color: white;
}
html.fail.minimal {
background: #f00;
}
html.pass.minimal {
background: #080;
}
html.needs_check.minimal {
background: #008;
}
.minimal #d {
display: none !important;
}
.minimal .expectedtext {
visibility: hidden !important;
}
#passtext, #failtext {
display: none;
}
.minimal.pass #passtext, .minimal.fail #failtext {
display: block;
}
|