| Index: Source/core/dom/ContainerNode.cpp
|
| diff --git a/Source/core/dom/ContainerNode.cpp b/Source/core/dom/ContainerNode.cpp
|
| index ba1ac83c6632233c263f03136bfa2a66b2f71934..5664bd9e4f684f44513e6859349ef746e444976c 100644
|
| --- a/Source/core/dom/ContainerNode.cpp
|
| +++ b/Source/core/dom/ContainerNode.cpp
|
| @@ -666,7 +666,6 @@ bool ContainerNode::getUpperLeftCorner(FloatPoint& point) const
|
| return false;
|
| // What is this code really trying to do?
|
| RenderObject* o = renderer();
|
| - RenderObject* p = o;
|
|
|
| if (!o->isInline() || o->isReplaced()) {
|
| point = o->localToAbsolute(FloatPoint(), UseTransforms);
|
| @@ -675,7 +674,7 @@ bool ContainerNode::getUpperLeftCorner(FloatPoint& point) const
|
|
|
| // find the next text/image child, to get a position
|
| while (o) {
|
| - p = o;
|
| + RenderObject* p = o;
|
| if (o->firstChild()) {
|
| o = o->firstChild();
|
| } else if (o->nextSibling()) {
|
|
|