| Index: third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| index 8b8a7695c9f8d7b8659df18e1cc7c311543c66e1..923f251605d6323c7a4f9073b89dadc1ddb8d5d3 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| @@ -194,7 +194,7 @@ void LayoutTreeAsText::writeLayoutObject(TextStream& ts, const LayoutObject& o,
|
| const LayoutText& text = toLayoutText(o);
|
| IntRect linesBox = text.linesBoundingBox();
|
| r = LayoutRect(IntRect(text.firstRunX(), text.firstRunY(), linesBox.width(), linesBox.height()));
|
| - if (adjustForTableCells && !text.firstTextBox())
|
| + if (adjustForTableCells && !text.hasTextBoxes())
|
| adjustForTableCells = false;
|
| } else if (o.isLayoutInline()) {
|
| // FIXME: Would be better not to just dump 0, 0 as the x and y here.
|
|
|