Index: Source/WebCore/rendering/InlineTextBox.cpp |
=================================================================== |
--- Source/WebCore/rendering/InlineTextBox.cpp (revision 129145) |
+++ Source/WebCore/rendering/InlineTextBox.cpp (working copy) |
@@ -64,6 +64,15 @@ |
InlineBox::destroy(arena); |
} |
+void InlineTextBox::markDirty(bool dirty) |
+{ |
+ if (dirty) { |
+ m_len = 0; |
+ m_start = 0; |
+ } |
+ InlineBox::markDirty(dirty); |
+} |
+ |
LayoutRect InlineTextBox::logicalOverflowRect() const |
{ |
if (knownToHaveNoOverflow() || !gTextBoxesWithOverflow) |