| Index: Source/core/rendering/style/RenderStyle.h
|
| diff --git a/Source/core/rendering/style/RenderStyle.h b/Source/core/rendering/style/RenderStyle.h
|
| index 6570cfa3d9f25fab529dcec889ec40e8c35cd94c..4d7b6d312aab4f56b5b5faa7d0582e95dcc98b29 100644
|
| --- a/Source/core/rendering/style/RenderStyle.h
|
| +++ b/Source/core/rendering/style/RenderStyle.h
|
| @@ -546,6 +546,7 @@ public:
|
| TextDecoration textDecoration() const { return static_cast<TextDecoration>(visual->textDecoration); }
|
| #if ENABLE(CSS3_TEXT)
|
| TextAlignLast textAlignLast() const { return static_cast<TextAlignLast>(rareInheritedData->m_textAlignLast); }
|
| + TextJustify textJustify() const { return static_cast<TextJustify>(rareInheritedData->m_textJustify); }
|
| TextUnderlinePosition textUnderlinePosition() const { return static_cast<TextUnderlinePosition>(rareInheritedData->m_textUnderlinePosition); }
|
| #endif // CSS3_TEXT
|
| TextDecorationStyle textDecorationStyle() const { return static_cast<TextDecorationStyle>(rareNonInheritedData->m_textDecorationStyle); }
|
| @@ -1056,6 +1057,7 @@ public:
|
| void setTextDecoration(TextDecoration v) { SET_VAR(visual, textDecoration, v); }
|
| #if ENABLE(CSS3_TEXT)
|
| void setTextAlignLast(TextAlignLast v) { SET_VAR(rareInheritedData, m_textAlignLast, v); }
|
| + void setTextJustify(TextJustify v) { SET_VAR(rareInheritedData, m_textJustify, v); }
|
| void setTextUnderlinePosition(TextUnderlinePosition v) { SET_VAR(rareInheritedData, m_textUnderlinePosition, v); }
|
| #endif // CSS3_TEXT
|
| void setTextDecorationStyle(TextDecorationStyle v) { SET_VAR(rareNonInheritedData, m_textDecorationStyle, v); }
|
| @@ -1509,6 +1511,7 @@ public:
|
| static TextDecoration initialTextDecoration() { return TextDecorationNone; }
|
| #if ENABLE(CSS3_TEXT)
|
| static TextAlignLast initialTextAlignLast() { return TextAlignLastAuto; }
|
| + static TextJustify initialTextJustify() { return TextJustifyAuto; }
|
| static TextUnderlinePosition initialTextUnderlinePosition() { return TextUnderlinePositionAuto; }
|
| #endif // CSS3_TEXT
|
| static TextDecorationStyle initialTextDecorationStyle() { return TextDecorationStyleSolid; }
|
|
|