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

Unified Diff: third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp

Issue 1934953002: Revert "Straighten out zoom and border-image" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « third_party/WebKit/LayoutTests/svg/css/border-image-zoomed-expected.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp b/third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp
index 334f02980b47c39a88489c4b1315bd2ded3de0d3..a0e7b2453c53feec5985b831a87f3926a835da59 100644
--- a/third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp
+++ b/third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp
@@ -42,15 +42,19 @@ bool NinePieceImagePainter::paint(GraphicsContext& graphicsContext, const Layout
// NinePieceImage returns the image slices without effective zoom applied and thus we compute
// the nine piece grid on top of the image in unzoomed coordinates.
- LayoutSize defaultObjectSize = borderImageRect.size();
- defaultObjectSize.scale(1 / style.effectiveZoom());
- IntSize imageSize = roundedIntSize(styleImage->imageSize(m_layoutObject, 1, defaultObjectSize));
+ //
+ // FIXME: The default object size passed to imageSize() should be scaled by the zoom factor
+ // passed in. In this case it means that borderImageRect should be passed in compensated by
+ // effective zoom, since the scale factor is one. For generated images, the actual image data
+ // (gradient stops, etc.) are scaled to effective zoom instead so we must take care not to cause
+ // scale of them again.
+ IntSize imageSize = roundedIntSize(styleImage->imageSize(m_layoutObject, 1, borderImageRect.size()));
IntRectOutsets borderWidths(style.borderTopWidth(), style.borderRightWidth(),
style.borderBottomWidth(), style.borderLeftWidth());
NinePieceImageGrid grid(ninePieceImage, imageSize, pixelSnappedIntRect(borderImageRect), borderWidths);
- RefPtr<Image> image = styleImage->image(m_layoutObject, imageSize, 1);
+ RefPtr<Image> image = styleImage->image(m_layoutObject, imageSize, style.effectiveZoom());
InterpolationQuality interpolationQuality = BoxPainter::chooseInterpolationQuality(m_layoutObject, image.get(), 0, rectWithOutsets.size());
InterpolationQuality previousInterpolationQuality = graphicsContext.imageInterpolationQuality();
« no previous file with comments | « third_party/WebKit/LayoutTests/svg/css/border-image-zoomed-expected.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698