| Index: sky/engine/core/rendering/RenderText.cpp
|
| diff --git a/sky/engine/core/rendering/RenderText.cpp b/sky/engine/core/rendering/RenderText.cpp
|
| index 7e672a0f0843bad99bed97264be9fb3fc3a9130a..615a2e9c5f22f45b01003611cf99d22280c78662 100644
|
| --- a/sky/engine/core/rendering/RenderText.cpp
|
| +++ b/sky/engine/core/rendering/RenderText.cpp
|
| @@ -224,12 +224,6 @@ String RenderText::plainText() const
|
| return plainTextBuilder.toString();
|
| }
|
|
|
| -void RenderText::absoluteRects(Vector<IntRect>& rects, const LayoutPoint& accumulatedOffset) const
|
| -{
|
| - for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
|
| - rects.append(enclosingIntRect(FloatRect(accumulatedOffset + box->topLeft(), box->size())));
|
| -}
|
| -
|
| static FloatRect localQuadForTextBox(InlineTextBox* box, unsigned start, unsigned end, bool useSelectionHeight)
|
| {
|
| unsigned realEnd = std::min(box->end() + 1, end);
|
|
|