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

Side by Side Diff: LayoutTests/css3/filters/effect-drop-shadow-clip-abspos.html

Issue 476953003: Fix for pixel-moving CSS filters with clipping. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add DOCTYPE to test files Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/css3/filters/effect-drop-shadow-clip-abspos-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
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .container {
4 -webkit-filter: drop-shadow(5px 5px 5px black);
5 }
6 .circle-mask {
7 border-radius: 80px;
8 overflow: hidden;
9 width: 100px;
10 height: 100px;
11 position: absolute;
12 }
13 .green-box {
14 width: 100px;
15 height: 100px;
16 background-color: green;
17 }
18 </style>
19 <div class="container">
20 <div class="circle-mask">
21 <div class="green-box"></div>
22 </div>
23 </div>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/css3/filters/effect-drop-shadow-clip-abspos-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698