Index: Source/core/layout/style/LayoutStyle.cpp |
diff --git a/Source/core/layout/style/LayoutStyle.cpp b/Source/core/layout/style/LayoutStyle.cpp |
index a0fb5a0e53a286d8d9d2f503a229c157a7b8a02c..49f8404d47786c11d25a50fa0c68ce349c2f8e5d 100644 |
--- a/Source/core/layout/style/LayoutStyle.cpp |
+++ b/Source/core/layout/style/LayoutStyle.cpp |
@@ -1183,6 +1183,8 @@ const FontDescription& LayoutStyle::fontDescription() const { return inherited-> |
float LayoutStyle::specifiedFontSize() const { return fontDescription().specifiedSize(); } |
float LayoutStyle::computedFontSize() const { return fontDescription().computedSize(); } |
int LayoutStyle::fontSize() const { return fontDescription().computedPixelSize(); } |
+float LayoutStyle::fontSizeAdjust() const { return fontDescription().sizeAdjust(); } |
+bool LayoutStyle::hasFontSizeAdjust() const { return fontDescription().sizeAdjust() > 0; } |
FontWeight LayoutStyle::fontWeight() const { return fontDescription().weight(); } |
FontStretch LayoutStyle::fontStretch() const { return fontDescription().stretch(); } |