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

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

Issue 1299323005: blink: Add backdrop-filter support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: one more 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5
6 div {
7 width: 100px;
8 height: 100px;
9 position :absolute;
10 }
11
12 .background_object {
13 left: 10px;
14 top: 10px;
15 background: orange;
16 }
17
18 .grayscale {
19 left: 60px;
20 top: 60px;
21 width: 50px;
22 height: 50px;
23 background: #ACACAC;
24 }
25
26 </style>
27 </head>
28 <body>
29 <div class="background_object"></div>
30 <div class="grayscale"></div>
31 </body>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698