| Index: third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| index b1b306d27a8b1bca120e7e4a9639e374a85c45cc..91884f7064a12c6089f9f8db2534cbaebbad365a 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| @@ -2444,7 +2444,7 @@ void InspectorCSSAgent::visitLayoutTreeNodes(
|
| protocol::Array<protocol::CSS::InlineTextBox>::create();
|
| for (const InlineTextBox* textBox = layoutText->firstTextBox(); textBox;
|
| textBox = textBox->nextTextBox()) {
|
| - FloatRect localCoordsTextBoxRect(textBox->calculateBoundaries());
|
| + FloatRect localCoordsTextBoxRect(textBox->frameRect());
|
| FloatRect absoluteCoordsTextBoxRect =
|
| layoutObject->localToAbsoluteQuad(localCoordsTextBoxRect)
|
| .boundingBox();
|
|
|