summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/include/tests.css
blob: e72f338085f67b27f47583924e98804201e9644b (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
@import "reset.css";
.yes { color: green }
.no { color: red }
.maybe { color: orange }
.yes, .no, .maybe {
    text-align: center;
    vertical-align: middle;
    font-size: 3em;
    /* Somehow Opera doesn't render the X's if the font is serif, on my
     * machine. */
    font-family: sans-serif;
    border-color: black;
}
div.alert {
    color: red;
    font-weight: bold;
}
.extra-results { font-size: small }
.good-result { color: green }
.bad-result { color: red }
body > div > table > tbody > tr > td > div:first-child {
    padding-bottom: 0.2em;
}
body > div > table > tbody > tr > td > div:last-child {
    padding-top: 0.2em;
    border-top: 1px solid black;
}
/* Workaround for browsers that don't treat <wbr> as a line-break opportunity
 * (activated via JS feature-detection) */
body.wbr-workaround > div > table > tbody > tr > td > div:last-child {
    word-wrap: break-word;
}
body > div > table > tbody > tr > td > div:last-child {
    white-space: pre-wrap;
}
/* Let the rendered HTML line up so it's easier to compare whitespace */
body > div > table > tbody > tr > td { vertical-align: top }
/* We don't want test cells to not wrap */
listing, plaintext, pre, xmp { white-space: pre-wrap }
img, video { width: 50px }
body > div > table {
    width: 100%;
    table-layout: fixed;
}
body > div > table > tbody > tr > td,
body > div > table > tbody > tr > th {
    width: 30%;
}
body > div > table > tbody > tr > td:last-child,
body > div > table > tbody > tr > th:last-child {
    width: 10%;
}
body > div > p > label > input { width: 30% }
#toolbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 1.5em;
    background: white;
    border-bottom: 2px solid gray;
}
body {
    /* So the toolbar doesn't block it */
    margin-top: 2em;
}
/* For easy visibility of nesting */
ol ol { list-style-type: lower-alpha }
ol ol ol { list-style-type: lower-roman }
/* For manual tests */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: red;
    background: yellow;
    font-size: 4em;
    font-weight: bold;
    text-align: center;
    padding: 2em;
}