| Index: Source/core/rendering/RenderImage.cpp
|
| diff --git a/Source/core/rendering/RenderImage.cpp b/Source/core/rendering/RenderImage.cpp
|
| index a82d073125fbed22c8d42dd936e999d3568567f6..c46e8f0897192af236d61e1663e6f467b39afc4e 100644
|
| --- a/Source/core/rendering/RenderImage.cpp
|
| +++ b/Source/core/rendering/RenderImage.cpp
|
| @@ -42,7 +42,6 @@
|
| #include "core/inspector/InspectorTraceEvents.h"
|
| #include "core/rendering/HitTestResult.h"
|
| #include "core/rendering/PaintInfo.h"
|
| -#include "core/rendering/RenderLayer.h"
|
| #include "core/rendering/RenderView.h"
|
| #include "core/rendering/TextRunConstructor.h"
|
| #include "core/svg/graphics/SVGImage.h"
|
| @@ -252,7 +251,6 @@
|
| {
|
| // FIXME: We should not be allowing paint invalidations during layout. crbug.com/339584
|
| AllowPaintInvalidationScope scoper(frameView());
|
| - DisableCompositingQueryAsserts disabler;
|
| invalidatePaintRectangle(paintInvalidationRect);
|
| }
|
|
|
| @@ -437,7 +435,7 @@
|
| paintInvalidationRect.moveBy(-absoluteContentBox().location());
|
| paintInvalidationRect.inflate(outlineWidth);
|
|
|
| - paintInvalidationOrMarkForLayout(false, &paintInvalidationRect);
|
| + invalidatePaintRectangle(paintInvalidationRect);
|
| }
|
|
|
| void RenderImage::paintIntoRect(GraphicsContext* context, const LayoutRect& rect)
|
|
|