| Index: Source/core/dom/ContainerNode.cpp
|
| diff --git a/Source/core/dom/ContainerNode.cpp b/Source/core/dom/ContainerNode.cpp
|
| index b74558de27e07a893df67239ee6e75f8cbd51790..adfe5e6d806cc1c2fa010b5eba18d320104e2bcf 100644
|
| --- a/Source/core/dom/ContainerNode.cpp
|
| +++ b/Source/core/dom/ContainerNode.cpp
|
| @@ -711,7 +711,7 @@ bool ContainerNode::getUpperLeftCorner(FloatPoint& point) const
|
| } else if ((o->isText() && !o->isBR()) || o->isReplaced()) {
|
| point = FloatPoint();
|
| if (o->isText() && toRenderText(o)->firstTextBox()) {
|
| - point.move(toRenderText(o)->linesBoundingBox().x(), toRenderText(o)->firstTextBox()->root()->lineTop());
|
| + point.move(toRenderText(o)->linesBoundingBox().x(), toRenderText(o)->firstTextBox()->root().lineTop());
|
| } else if (o->isBox()) {
|
| RenderBox* box = toRenderBox(o);
|
| point.moveBy(box->location());
|
|
|