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

Side by Side Diff: LayoutTests/css3/filters/backdrop-filter-rendering-no-background.html

Issue 1327973002: blink: Layers that have a backdrop-filter paints contents Base URL: https://chromium.googlesource.com/chromium/blink.git@wk-bf
Patch Set: check for backdrop filter in more places Created 5 years, 3 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
« no previous file with comments | « no previous file | LayoutTests/css3/filters/backdrop-filter-rendering-no-background-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 5
6 div { 6 div {
7 width: 100px; 7 width: 100px;
8 height: 100px; 8 height: 100px;
9 position :absolute; 9 position :absolute;
10 } 10 }
11 11
12 .background_object { 12 .background_object {
13 left: 10px; 13 left: 10px;
14 top: 10px; 14 top: 10px;
15 background: orange; 15 background: orange;
16 } 16 }
17 17
18 .grayscale_backdrop { 18 .grayscale_backdrop {
19 left: 60px; 19 left: 60px;
20 top: 60px; 20 top: 60px;
21 background: blue;
22 opacity: 0.0;
23 backdrop-filter: grayscale(100%); 21 backdrop-filter: grayscale(100%);
24 } 22 }
25 23
26 </style> 24 </style>
27 </head> 25 </head>
28 <body> 26 <body>
29 <div class="background_object"></div> 27 <div class="background_object"></div>
30 <div class="grayscale_backdrop"></div> 28 <div class="grayscale_backdrop"></div>
31 </body> 29 </body>
32 </html> 30 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/css3/filters/backdrop-filter-rendering-no-background-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698