Index: Source/core/rendering/style/RenderStyle.cpp |
diff --git a/Source/core/rendering/style/RenderStyle.cpp b/Source/core/rendering/style/RenderStyle.cpp |
index 5d16f9e74d10e25b88028ab3b92d5ec7c260470b..3744a0c4e817226cf8d49f9526ea882c5629d7d5 100644 |
--- a/Source/core/rendering/style/RenderStyle.cpp |
+++ b/Source/core/rendering/style/RenderStyle.cpp |
@@ -180,9 +180,7 @@ StyleRecalcChange RenderStyle::compare(const RenderStyle* oldStyle, const Render |
|| oldStyle->columnSpan() != newStyle->columnSpan() |
|| oldStyle->specifiesAutoColumns() != newStyle->specifiesAutoColumns() |
|| !oldStyle->contentDataEquivalent(newStyle) |
- || oldStyle->hasTextCombine() != newStyle->hasTextCombine() |
- || oldStyle->flowThread() != newStyle->flowThread() |
- || oldStyle->regionThread() != newStyle->regionThread()) |
+ || oldStyle->hasTextCombine() != newStyle->hasTextCombine()) |
return Reattach; |
if (*oldStyle == *newStyle) |
@@ -419,7 +417,6 @@ StyleDifference RenderStyle::diff(const RenderStyle* other, unsigned& changedCon |
|| rareNonInheritedData->marginAfterCollapse != other->rareNonInheritedData->marginAfterCollapse |
|| rareNonInheritedData->lineClamp != other->rareNonInheritedData->lineClamp |
|| rareNonInheritedData->textOverflow != other->rareNonInheritedData->textOverflow |
- || rareNonInheritedData->m_regionFragment != other->rareNonInheritedData->m_regionFragment |
|| rareNonInheritedData->m_wrapFlow != other->rareNonInheritedData->m_wrapFlow |
|| rareNonInheritedData->m_wrapThrough != other->rareNonInheritedData->m_wrapThrough |
|| rareNonInheritedData->m_shapeMargin != other->rareNonInheritedData->m_shapeMargin |