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

Side by Side Diff: LayoutTests/css3/filters/css-opacity-with-drop-shadow-expected.html

Issue 779383003: Impl-side painting for css*/ layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix mix-blend-mode-with-masking expectation Created 6 years 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>This test verifies that an element's drop shadow filter is not clippe d when a CSS opacity property is applied.</title>
5 <!--
6 This is the reference file for the the test.
7 If the associated test passes, you should see a gray square and a light green square.
8 -->
9 <style>
10 body {
11 margin: 0;
12 }
13 #filtered {
14 background-color: black;
15 opacity: 0.5;
16 width: 100px;
17 height: 100px;
18 }
19 #drop-shadow {
20 background-color: #0f0;
21 opacity: 0.5;
22 position: absolute;
23 top: 110px;
24 left: 110px;
25 width: 100px;
26 height: 100px;
27 }
28 </style>
29 </head>
30 <body>
31 <div id="filtered"></div>
32 <div id="drop-shadow"></div>
33 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698