| Index: Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| diff --git a/Source/core/css/ComputedStyleCSSValueMapping.cpp b/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| index 06fa017c5f3c2e22a1b6f5a94e67795d9a40c9b7..dc0010acc1829e15be8fab716e7ffd0d6e67175f 100644
|
| --- a/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| +++ b/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| @@ -1752,6 +1752,10 @@ PassRefPtrWillBeRawPtr<CSSValue> ComputedStyleCSSValueMapping::get(CSSPropertyID
|
| return cssValuePool().createValue(style.hyphenationString(), CSSPrimitiveValue::CSS_STRING);
|
| case CSSPropertyImageRendering:
|
| return CSSPrimitiveValue::create(style.imageRendering());
|
| + case CSSPropertyImageOrientation:
|
| + if (style.respectImageOrientation() == RespectImageOrientation)
|
| + return cssValuePool().createValue(CSSValueFromImage);
|
| + return cssValuePool().createValue(0, CSSPrimitiveValue::CSS_DEG);
|
| case CSSPropertyIsolation:
|
| return cssValuePool().createValue(style.isolation());
|
| case CSSPropertyJustifyItems:
|
|
|