Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/resources/testharness.css

Issue 1898703003: Remove testharness.js and friends in LayoutTests/http/tests/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 html {
2 font-family:DejaVu Sans, Bitstream Vera Sans, Arial, Sans;
3 }
4
5 #log .warning,
6 #log .warning a {
7 color: black;
8 background: yellow;
9 }
10
11 #log .error,
12 #log .error a {
13 color: white;
14 background: red;
15 }
16
17 section#summary {
18 margin-bottom:1em;
19 }
20
21 table#results {
22 border-collapse:collapse;
23 table-layout:fixed;
24 width:100%;
25 }
26
27 table#results th:first-child,
28 table#results td:first-child {
29 width:4em;
30 }
31
32 table#results th:last-child,
33 table#results td:last-child {
34 width:50%;
35 }
36
37 table#results.assertions th:last-child,
38 table#results.assertions td:last-child {
39 width:35%;
40 }
41
42 table#results th {
43 padding:0;
44 padding-bottom:0.5em;
45 border-bottom:medium solid black;
46 }
47
48 table#results td {
49 padding:1em;
50 padding-bottom:0.5em;
51 border-bottom:thin solid black;
52 }
53
54 tr.pass > td:first-child {
55 color:green;
56 }
57
58 tr.fail > td:first-child {
59 color:red;
60 }
61
62 tr.timeout > td:first-child {
63 color:red;
64 }
65
66 tr.notrun > td:first-child {
67 color:blue;
68 }
69
70 .pass > td:first-child, .fail > td:first-child, .timeout > td:first-child, .notr un > td:first-child {
71 font-variant:small-caps;
72 }
73
74 table#results span {
75 display:block;
76 }
77
78 table#results span.expected {
79 font-family:DejaVu Sans Mono, Bitstream Vera Sans Mono, Monospace;
80 white-space:pre;
81 }
82
83 table#results span.actual {
84 font-family:DejaVu Sans Mono, Bitstream Vera Sans Mono, Monospace;
85 white-space:pre;
86 }
87
88 span.ok {
89 color:green;
90 }
91
92 tr.error {
93 color:red;
94 }
95
96 span.timeout {
97 color:red;
98 }
99
100 span.ok, span.timeout, span.error {
101 font-variant:small-caps;
102 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698