Index: Source/core/style/ComputedStyle.h |
diff --git a/Source/core/style/ComputedStyle.h b/Source/core/style/ComputedStyle.h |
index 7b9653790330d59ccb1a9f88ebe3c032f8fab1f5..df33c8a4014a9d06c8bd403c982f5686914fc3b0 100644 |
--- a/Source/core/style/ComputedStyle.h |
+++ b/Source/core/style/ComputedStyle.h |
@@ -891,6 +891,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 |
@@ -1377,6 +1379,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); } |
@@ -1686,6 +1690,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; } |