| Index: Source/core/style/ComputedStyle.h
|
| diff --git a/Source/core/style/ComputedStyle.h b/Source/core/style/ComputedStyle.h
|
| index 3ad70e15ded5c112024236f07aa6924360329742..c69513e1dbb3732e45445e90c05b4d54c9e989bd 100644
|
| --- a/Source/core/style/ComputedStyle.h
|
| +++ b/Source/core/style/ComputedStyle.h
|
| @@ -890,6 +890,8 @@ public:
|
|
|
| TabSize tabSize() const { return rareInheritedData->m_tabSize; }
|
|
|
| + RespectImageOrientationEnum respectImageOrientation() const { return static_cast<RespectImageOrientationEnum>(rareInheritedData->m_respectImageOrientation); }
|
| +
|
| // End CSS3 Getters
|
|
|
| // Apple-specific property getter methods
|
| @@ -1376,6 +1378,8 @@ public:
|
|
|
| void setTabSize(TabSize size) { SET_VAR(rareInheritedData, m_tabSize, size); }
|
|
|
| + void setRespectImageOrientation(RespectImageOrientationEnum v) { SET_VAR(rareInheritedData, m_respectImageOrientation, v); }
|
| +
|
| // End CSS3 Setters
|
|
|
| void setWrapFlow(WrapFlow wrapFlow) { SET_VAR(rareNonInheritedData, m_wrapFlow, wrapFlow); }
|
| @@ -1685,6 +1689,7 @@ public:
|
| static RubyPosition initialRubyPosition() { return RubyPositionBefore; }
|
| static LineBoxContain initialLineBoxContain() { return LineBoxContainBlock | LineBoxContainInline | LineBoxContainReplaced; }
|
| static ImageOrientationEnum initialImageOrientation() { return OriginTopLeft; }
|
| + static RespectImageOrientationEnum initialRespectImageOrientation() { return DoNotRespectImageOrientation; }
|
| static EImageRendering initialImageRendering() { return ImageRenderingAuto; }
|
| static ImageResolutionSource initialImageResolutionSource() { return ImageResolutionSpecified; }
|
| static ImageResolutionSnap initialImageResolutionSnap() { return ImageResolutionNoSnap; }
|
|
|