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

Unified Diff: LayoutTests/css3/filters/effect-drop-shadow-clip-abspos-expected.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/css3/filters/effect-drop-shadow-clip-abspos.html ('k') | Source/core/rendering/RenderLayer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/filters/effect-drop-shadow-clip-abspos-expected.html
diff --git a/LayoutTests/css3/filters/effect-drop-shadow-clip-abspos-expected.html b/LayoutTests/css3/filters/effect-drop-shadow-clip-abspos-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..62f0f72649028410ce9f0bd0ea937ffce4ea3e03
--- /dev/null
+++ b/LayoutTests/css3/filters/effect-drop-shadow-clip-abspos-expected.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<style>
+.container {
+ -webkit-filter: drop-shadow(5px 5px 5px black);
+}
+.circle-mask {
+ border-radius: 80px;
+ overflow: hidden;
+ width: 100px;
+ height: 100px;
+}
+.green-box {
+ width: 100px;
+ height: 100px;
+ background-color: green;
+}
+</style>
+<div class="container">
+ <div class="circle-mask">
+ <div class="green-box"></div>
+ </div>
+</div>
« no previous file with comments | « LayoutTests/css3/filters/effect-drop-shadow-clip-abspos.html ('k') | Source/core/rendering/RenderLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698