| Index: third_party/WebKit/Source/core/layout/LayoutText.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutText.h b/third_party/WebKit/Source/core/layout/LayoutText.h
|
| index 922e7442cfb578344e4c97e4460f9395e8ab9f00..ad16a64e2d800b6458ad1ca9d00708570ae4c79e 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutText.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutText.h
|
| @@ -153,6 +153,9 @@ public:
|
| InlineTextBox* firstTextBox() const { return m_firstTextBox; }
|
| InlineTextBox* lastTextBox() const { return m_lastTextBox; }
|
|
|
| + // True if we have inline text box children which implies rendered text (or whitespace) output.
|
| + bool hasTextBoxes() const { return firstTextBox(); }
|
| +
|
| int caretMinOffset() const override;
|
| int caretMaxOffset() const override;
|
| unsigned resolvedTextLength() const;
|
|
|