Chromium Code Reviews| Index: Source/core/rendering/style/RenderStyle.cpp |
| diff --git a/Source/core/rendering/style/RenderStyle.cpp b/Source/core/rendering/style/RenderStyle.cpp |
| index a4cb88432c2c76f68e13a4f1be202f7770eaf843..b7148fc6e63ea42c92ac321aee21d213127bec4b 100644 |
| --- a/Source/core/rendering/style/RenderStyle.cpp |
| +++ b/Source/core/rendering/style/RenderStyle.cpp |
| @@ -180,7 +180,6 @@ StyleRecalcChange RenderStyle::stylePropagationDiff(const RenderStyle* oldStyle, |
| if (oldStyle->display() != newStyle->display() |
| || oldStyle->hasPseudoStyle(FIRST_LETTER) != newStyle->hasPseudoStyle(FIRST_LETTER) |
| || oldStyle->columnSpan() != newStyle->columnSpan() |
|
esprehn
2014/04/09 18:19:08
We still need to reattach if the span changes thou
mstensho (USE GERRIT)
2014/04/09 18:58:27
In the old implementation, yes. In the new impleme
|
| - || oldStyle->specifiesColumns() != newStyle->specifiesColumns() |
|
esprehn
2014/04/09 18:19:08
I assume we check this bit somewhere else too?
mstensho (USE GERRIT)
2014/04/09 18:58:27
Yes, we do.
|
| || !oldStyle->contentDataEquivalent(newStyle) |
| || oldStyle->hasTextCombine() != newStyle->hasTextCombine()) |
| return Reattach; |