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

Side by Side Diff: polymer_0.5.0/bower_components/web-animations-js/test/blink/testharness/testharness.css

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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 #log pre {
18 border: 1px solid black;
19 padding: 1em;
20 }
21
22 section#summary {
23 margin-bottom:1em;
24 }
25
26 table#results {
27 border-collapse:collapse;
28 table-layout:fixed;
29 width:100%;
30 }
31
32 table#results th:first-child,
33 table#results td:first-child {
34 width:4em;
35 }
36
37 table#results th:last-child,
38 table#results td:last-child {
39 width:50%;
40 }
41
42 table#results.assertions th:last-child,
43 table#results.assertions td:last-child {
44 width:35%;
45 }
46
47 table#results th {
48 padding:0;
49 padding-bottom:0.5em;
50 border-bottom:medium solid black;
51 }
52
53 table#results td {
54 padding:1em;
55 padding-bottom:0.5em;
56 border-bottom:thin solid black;
57 }
58
59 tr.pass > td:first-child {
60 color:green;
61 }
62
63 tr.fail > td:first-child {
64 color:red;
65 }
66
67 tr.timeout > td:first-child {
68 color:red;
69 }
70
71 tr.notrun > td:first-child {
72 color:blue;
73 }
74
75 .pass > td:first-child, .fail > td:first-child, .timeout > td:first-child, .notr un > td:first-child {
76 font-variant:small-caps;
77 }
78
79 table#results span {
80 display:block;
81 }
82
83 table#results span.expected {
84 font-family:DejaVu Sans Mono, Bitstream Vera Sans Mono, Monospace;
85 white-space:pre;
86 }
87
88 table#results span.actual {
89 font-family:DejaVu Sans Mono, Bitstream Vera Sans Mono, Monospace;
90 white-space:pre;
91 }
92
93 span.ok {
94 color:green;
95 }
96
97 tr.error {
98 color:red;
99 }
100
101 span.timeout {
102 color:red;
103 }
104
105 span.ok, span.timeout, span.error {
106 font-variant:small-caps;
107 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698