Index: third_party/WebKit/Source/core/layout/line/InlineBox.cpp |
diff --git a/third_party/WebKit/Source/core/layout/line/InlineBox.cpp b/third_party/WebKit/Source/core/layout/line/InlineBox.cpp |
index f9e3fe6dfa4c58cc558effc1447331e1136dc11d..cd6c598d2ac489ed7c7d3ea36fe9c134ec283cae 100644 |
--- a/third_party/WebKit/Source/core/layout/line/InlineBox.cpp |
+++ b/third_party/WebKit/Source/core/layout/line/InlineBox.cpp |
@@ -66,7 +66,7 @@ void InlineBox::destroy() |
// We do not need to issue invalidations if the page is being destroyed |
// since these objects will never be repainted. |
if (!m_lineLayoutItem.documentBeingDestroyed()) |
- m_lineLayoutItem.invalidateDisplayItemClient(*this); |
+ m_lineLayoutItem.invalidateDisplayItemClient(*this, PaintInvalidationFull); |
delete this; |
} |
@@ -384,7 +384,7 @@ LayoutPoint InlineBox::flipForWritingMode(const LayoutPoint& point) const |
void InlineBox::invalidateDisplayItemClientsRecursively() |
{ |
- getLineLayoutItem().invalidateDisplayItemClient(*this); |
+ getLineLayoutItem().invalidateDisplayItemClient(*this, PaintInvalidationFull); |
if (!isInlineFlowBox()) |
return; |
for (InlineBox* child = toInlineFlowBox(this)->firstChild(); child; child = child->nextOnLine()) |