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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/common/canvas-tests.css

Issue 2015623004: Import wpt@ed94c51f3dfaa5ff4c9c311add1a560408059c51 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
1 html.fail { 1 html.fail {
2 background: #f66; 2 background: #f66;
3 } 3 }
4 html.pass { 4 html.pass {
5 background: #6f6; 5 background: #6f6;
6 } 6 }
7 html.needs_check { 7 html.needs_check {
8 background: #99f; 8 background: #99f;
9 } 9 }
10 10
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 } 60 }
61 61
62 .refs li { 62 .refs li {
63 display: inline; 63 display: inline;
64 list-style-type: none; 64 list-style-type: none;
65 margin: 0; 65 margin: 0;
66 padding: 0; 66 padding: 0;
67 } 67 }
68 68
69 canvas { 69 canvas {
70 display: block !important; 70 display: none;
71 visibility: visible !important; 71 visibility: hidden;
72 border: 2px #f0f solid; 72 border: 2px #f0f solid;
73 background: url(images/background.png); 73 background: url(../images/background.png);
74 } 74 }
75 75
76 img.expected { 76 img.expected {
77 display: none; 77 display: none;
78 border: 2px #f0f solid; 78 border: 2px #f0f solid;
79 background: url(images/background.png); 79 background: url(../images/background.png);
80 } 80 }
81 81
82 iframe { 82 iframe {
83 border: 2px #f0f solid; 83 border: 2px #f0f solid;
84 } 84 }
85 85
86 .output { 86 .output {
87 display: none; 87 display: none;
88 visibility: none; 88 }
89
90 .show_output .output, .needs_check .output {
91 display: block !important;
92 visibility: visible !important;
89 } 93 }
90 94
91 .show_output #show_output { 95 .show_output #show_output {
92 display: none; 96 display: none;
93 } 97 }
94 98
95 .resource { 99 .resource {
96 visibility: hidden; 100 visibility: hidden;
97 height: 0; 101 height: 0;
98 } 102 }
(...skipping 22 matching lines...) Expand all
121 } 125 }
122 .minimal .expectedtext { 126 .minimal .expectedtext {
123 visibility: hidden !important; 127 visibility: hidden !important;
124 } 128 }
125 #passtext, #failtext { 129 #passtext, #failtext {
126 display: none; 130 display: none;
127 } 131 }
128 .minimal.pass #passtext, .minimal.fail #failtext { 132 .minimal.pass #passtext, .minimal.fail #failtext {
129 display: block; 133 display: block;
130 } 134 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698