Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(498)

Unified Diff: third_party/WebKit/Source/core/layout/api/LineLayoutItem.h

Issue 1665413003: [Line Layout API] Add LineLayoutSVGInline and LineLayoutSVGTextPath (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/layout/api/LineLayoutSVGInline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698