| Index: Source/core/rendering/InlineTextBox.cpp
|
| diff --git a/Source/core/rendering/InlineTextBox.cpp b/Source/core/rendering/InlineTextBox.cpp
|
| index 1173aac4c3c428f0fe17e1da10c3ac961ed29525..904728fa6905743dff2bf07ee42d3b7c0b084f04 100644
|
| --- a/Source/core/rendering/InlineTextBox.cpp
|
| +++ b/Source/core/rendering/InlineTextBox.cpp
|
| @@ -81,6 +81,13 @@ void InlineTextBox::destroy()
|
| InlineBox::destroy();
|
| }
|
|
|
| +void InlineTextBox::offsetRun(int delta)
|
| +{
|
| + ASSERT(!isDirty());
|
| + InlineTextBoxPainter::removeFromTextBlobCache(*this);
|
| + m_start += delta;
|
| +}
|
| +
|
| void InlineTextBox::markDirty()
|
| {
|
| // FIXME: Is it actually possible to try and paint a dirty InlineTextBox?
|
|
|