| Index: Source/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/Source/core/css/CSSComputedStyleDeclaration.cpp b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| index 0f9f7eaaf9187427e717b91317b04c1fdc57ab25..9bf94b6aebee292f5bb999ab9e218b872e628db9 100644
|
| --- a/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -176,6 +176,7 @@ static const CSSPropertyID staticComputableProperties[] = {
|
| CSSPropertyTextDecorationColor,
|
| #if ENABLE(CSS3_TEXT)
|
| CSSPropertyWebkitTextAlignLast,
|
| + CSSPropertyWebkitTextJustify,
|
| CSSPropertyWebkitTextUnderlinePosition,
|
| #endif // CSS3_TEXT
|
| CSSPropertyTextIndent,
|
| @@ -2138,6 +2139,8 @@ PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(CSSPropert
|
| #if ENABLE(CSS3_TEXT)
|
| case CSSPropertyWebkitTextAlignLast:
|
| return cssValuePool().createValue(style->textAlignLast());
|
| + case CSSPropertyWebkitTextJustify:
|
| + return cssValuePool().createValue(style->textJustify());
|
| case CSSPropertyWebkitTextUnderlinePosition:
|
| return cssValuePool().createValue(style->textUnderlinePosition());
|
| #endif // CSS3_TEXT
|
|
|