| Index: sky/engine/core/rendering/RenderObject.h
|
| diff --git a/sky/engine/core/rendering/RenderObject.h b/sky/engine/core/rendering/RenderObject.h
|
| index 05523532076e52b0a37c182389304bb6060c0a4d..32052435022e4e77953ebacef95eabfcab2107da 100644
|
| --- a/sky/engine/core/rendering/RenderObject.h
|
| +++ b/sky/engine/core/rendering/RenderObject.h
|
| @@ -427,7 +427,6 @@ public:
|
| bool isInline() const { return m_bitfields.isInline(); } // inline object
|
| bool isDragging() const { return m_bitfields.isDragging(); }
|
| bool isReplaced() const { return m_bitfields.isReplaced(); } // a "replaced" element (see CSS)
|
| - bool isHorizontalWritingMode() const { return m_bitfields.horizontalWritingMode(); }
|
|
|
| bool hasLayer() const { return m_bitfields.hasLayer(); }
|
|
|
| @@ -902,7 +901,7 @@ public:
|
| return layoutDidGetCalled() || mayNeedPaintInvalidation() || shouldDoFullPaintInvalidation() || shouldDoFullPaintInvalidationIfSelfPaintingLayer();
|
| }
|
|
|
| - bool supportsPaintInvalidationStateCachedOffsets() const { return !hasTransform() && !style()->isFlippedBlocksWritingMode(); }
|
| + bool supportsPaintInvalidationStateCachedOffsets() const { return !hasTransform(); }
|
|
|
| void setNeedsOverflowRecalcAfterStyleChange();
|
| void markContainingBlocksForOverflowRecalc();
|
|
|