| Index: third_party/WebKit/Source/core/layout/api/LineLayoutItem.h
|
| diff --git a/third_party/WebKit/Source/core/layout/api/LineLayoutItem.h b/third_party/WebKit/Source/core/layout/api/LineLayoutItem.h
|
| index 480f2451ec571f0e9cf01b464c33f966e462c870..3dc3a64a90423e9e26b9ff7f8c21561d2e9a85ae 100644
|
| --- a/third_party/WebKit/Source/core/layout/api/LineLayoutItem.h
|
| +++ b/third_party/WebKit/Source/core/layout/api/LineLayoutItem.h
|
| @@ -259,11 +259,21 @@ public:
|
| return m_layoutObject->isRubyBase();
|
| }
|
|
|
| + bool isSVGInline() const
|
| + {
|
| + return m_layoutObject->isSVGInline();
|
| + }
|
| +
|
| bool isSVGInlineText() const
|
| {
|
| return m_layoutObject->isSVGInlineText();
|
| }
|
|
|
| + bool isSVGTextPath() const
|
| + {
|
| + return m_layoutObject->isSVGTextPath();
|
| + }
|
| +
|
| bool isTableCell() const
|
| {
|
| return m_layoutObject->isTableCell();
|
|
|