| Index: Source/core/rendering/style/RenderStyle.cpp
|
| diff --git a/Source/core/rendering/style/RenderStyle.cpp b/Source/core/rendering/style/RenderStyle.cpp
|
| index 624ec2af859cc90866a489c67ae2651e63a91db1..b1413bc71cc4c3699b7567f15156cd57b69f4590 100644
|
| --- a/Source/core/rendering/style/RenderStyle.cpp
|
| +++ b/Source/core/rendering/style/RenderStyle.cpp
|
| @@ -179,7 +179,9 @@ StyleRecalcChange RenderStyle::stylePropagationDiff(const RenderStyle* oldStyle,
|
| || oldStyle->hasPseudoStyle(FIRST_LETTER) != newStyle->hasPseudoStyle(FIRST_LETTER)
|
| || oldStyle->columnSpan() != newStyle->columnSpan()
|
| || !oldStyle->contentDataEquivalent(newStyle)
|
| - || oldStyle->hasTextCombine() != newStyle->hasTextCombine())
|
| + || oldStyle->hasTextCombine() != newStyle->hasTextCombine()
|
| + || oldStyle->justifyItems() != newStyle->justifyItems()
|
| + || oldStyle->alignItems() != newStyle->alignItems())
|
| return Reattach;
|
|
|
| if (*oldStyle == *newStyle)
|
|
|