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

Unified Diff: Source/core/rendering/RenderLayer.cpp

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-expected.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderLayer.cpp
diff --git a/Source/core/rendering/RenderLayer.cpp b/Source/core/rendering/RenderLayer.cpp
index d8e5be0ca2e2acd6a6f9d874e61442870a9ed747..edd1f4398070ceb6503e7841e61cb22b4cbf5adc 100644
--- a/Source/core/rendering/RenderLayer.cpp
+++ b/Source/core/rendering/RenderLayer.cpp
@@ -1855,7 +1855,7 @@ void RenderLayer::paintLayerContents(GraphicsContext* context, const LayerPainti
}
if (shouldPaintNegZOrderList)
- paintChildren(NegativeZOrderChildren, context, localPaintingInfo, paintFlags);
+ paintChildren(NegativeZOrderChildren, context, paintingInfo, paintFlags);
if (shouldPaintOwnContents) {
paintForegroundForFragments(layerFragments, context, transparencyLayerContext, paintingInfo.paintDirtyRect, haveTransparency,
@@ -1866,7 +1866,7 @@ void RenderLayer::paintLayerContents(GraphicsContext* context, const LayerPainti
paintOutlineForFragments(layerFragments, context, localPaintingInfo, paintBehavior, paintingRootForRenderer, paintFlags);
if (shouldPaintNormalFlowAndPosZOrderLists)
- paintChildren(NormalFlowChildren | PositiveZOrderChildren, context, localPaintingInfo, paintFlags);
+ paintChildren(NormalFlowChildren | PositiveZOrderChildren, context, paintingInfo, paintFlags);
if (shouldPaintOverlayScrollbars)
paintOverflowControlsForFragments(layerFragments, context, localPaintingInfo, paintFlags);
« no previous file with comments | « LayoutTests/css3/filters/effect-drop-shadow-clip-abspos-expected.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698