| Index: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| index 381e4f73cb99ee15f9ff9439b3aafcbe43270abd..3fa99f4ec52abc06744c8b7125e39c43e51f80c6 100644
|
| --- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| +++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| @@ -1818,6 +1818,8 @@ CSSValue* ComputedStyleCSSValueMapping::get(CSSPropertyID propertyID, const Comp
|
| if (style.highlight() == nullAtom)
|
| return cssValuePool().createIdentifierValue(CSSValueNone);
|
| return CSSStringValue::create(style.highlight());
|
| + case CSSPropertyHyphens:
|
| + return cssValuePool().createValue(style.getHyphens());
|
| case CSSPropertyWebkitHyphenateCharacter:
|
| if (style.hyphenationString().isNull())
|
| return cssValuePool().createIdentifierValue(CSSValueAuto);
|
|
|