Index: Source/core/rendering/style/RenderStyle.h |
diff --git a/Source/core/rendering/style/RenderStyle.h b/Source/core/rendering/style/RenderStyle.h |
index 6d60e8da2f63b5b9a4deb3e129ed133e1f741bbd..425f4834f723e8800381721f1d0172795488541a 100644 |
--- a/Source/core/rendering/style/RenderStyle.h |
+++ b/Source/core/rendering/style/RenderStyle.h |
@@ -547,6 +547,7 @@ public: |
#endif |
ETextAlign textAlign() const { return static_cast<ETextAlign>(inherited_flags._text_align); } |
TextAlignLast textAlignLast() const { return static_cast<TextAlignLast>(rareInheritedData->m_textAlignLast); } |
+ TextJustify textJustify() const { return static_cast<TextJustify>(rareInheritedData->m_textJustify); } |
ETextTransform textTransform() const { return static_cast<ETextTransform>(inherited_flags._text_transform); } |
TextDecoration textDecorationsInEffect() const { return static_cast<TextDecoration>(inherited_flags._text_decorations); } |
TextDecoration textDecoration() const { return static_cast<TextDecoration>(visual->textDecoration); } |
@@ -1054,6 +1055,7 @@ public: |
#endif |
void setTextAlign(ETextAlign v) { inherited_flags._text_align = v; } |
void setTextAlignLast(TextAlignLast v) { SET_VAR(rareInheritedData, m_textAlignLast, v); } |
+ void setTextJustify(TextJustify v) { SET_VAR(rareInheritedData, m_textJustify, v); } |
void setTextTransform(ETextTransform v) { inherited_flags._text_transform = v; } |
void addToTextDecorationsInEffect(TextDecoration v) { inherited_flags._text_decorations |= v; } |
void setTextDecorationsInEffect(TextDecoration v) { inherited_flags._text_decorations = v; } |
@@ -1510,6 +1512,7 @@ public: |
static Length initialLineHeight() { return Length(-100.0, Percent); } |
static ETextAlign initialTextAlign() { return TASTART; } |
static TextAlignLast initialTextAlignLast() { return TextAlignLastAuto; } |
+ static TextJustify initialTextJustify() { return TextJustifyAuto; } |
static TextDecoration initialTextDecoration() { return TextDecorationNone; } |
#if ENABLE(CSS3_TEXT) |
static TextUnderlinePosition initialTextUnderlinePosition() { return TextUnderlinePositionAuto; } |