| Index: third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
|
| index 70068e10658e84b629e2dd8566a6fac6be8811b0..cb5f3ad5020d4a547ea1cd836f428f1c97085d80 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
|
| @@ -897,7 +897,8 @@ void GraphicsContext::drawTiledImage(Image* image,
|
| const FloatSize& repeatSpacing) {
|
| if (contextDisabled() || !image)
|
| return;
|
| - image->drawTiled(*this, destRect, srcPoint, tileSize, op, repeatSpacing);
|
| + image->drawTiledBackground(*this, destRect, srcPoint, tileSize, op,
|
| + repeatSpacing);
|
| m_paintController.setImagePainted();
|
| }
|
|
|
| @@ -917,7 +918,8 @@ void GraphicsContext::drawTiledImage(Image* image,
|
| return;
|
| }
|
|
|
| - image->drawTiled(*this, dest, srcRect, tileScaleFactor, hRule, vRule, op);
|
| + image->drawTiledBorder(*this, dest, srcRect, tileScaleFactor, hRule, vRule,
|
| + op);
|
| m_paintController.setImagePainted();
|
| }
|
|
|
|
|