Index: Source/core/rendering/RenderImage.cpp |
diff --git a/Source/core/rendering/RenderImage.cpp b/Source/core/rendering/RenderImage.cpp |
index 6278c9721c02e4d4f942e6f65385bc49d3abf433..596d87214ea00f26a3753eab4b936011033d10f3 100644 |
--- a/Source/core/rendering/RenderImage.cpp |
+++ b/Source/core/rendering/RenderImage.cpp |
@@ -38,6 +38,7 @@ |
#include "core/html/HTMLImageElement.h" |
#include "core/html/HTMLInputElement.h" |
#include "core/html/HTMLMapElement.h" |
+ |
#include "core/paint/ImagePainter.h" |
#include "core/rendering/HitTestResult.h" |
#include "core/rendering/PaintInfo.h" |
@@ -280,6 +281,11 @@ void RenderImage::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset) |
ImagePainter(*this).paint(paintInfo, paintOffset); |
} |
+void RenderImage::paintBoxDecorationBackground(PaintInfo& paintInfo, const LayoutPoint& paintOffset) |
+{ |
+ ImagePainter(*this).paintBoxDecorationBackground(paintInfo, paintOffset); |
+} |
+ |
void RenderImage::areaElementFocusChanged(HTMLAreaElement* areaElement) |
{ |
ASSERT(areaElement->imageElement() == node()); |