| Index: Source/core/dom/Node.cpp
|
| diff --git a/Source/core/dom/Node.cpp b/Source/core/dom/Node.cpp
|
| index 74fad30010f3bf731a8e0a52059a5e467faa83db..82104d62565862052bb1c9bbe7c24cf4b3089010 100644
|
| --- a/Source/core/dom/Node.cpp
|
| +++ b/Source/core/dom/Node.cpp
|
| @@ -651,7 +651,7 @@ void Node::markAncestorsWithChildNeedsStyleInvalidation()
|
| for (Node* node = parentOrShadowHostNode(); node && !node->childNeedsStyleInvalidation(); node = node->parentOrShadowHostNode())
|
| node->setChildNeedsStyleInvalidation();
|
| if (document().childNeedsStyleInvalidation())
|
| - document().scheduleStyleRecalc();
|
| + document().scheduleRenderTreeUpdate();
|
| }
|
|
|
| void Node::markAncestorsWithChildNeedsDistributionRecalc()
|
| @@ -659,7 +659,7 @@ void Node::markAncestorsWithChildNeedsDistributionRecalc()
|
| for (Node* node = this; node && !node->childNeedsDistributionRecalc(); node = node->parentOrShadowHostNode())
|
| node->setChildNeedsDistributionRecalc();
|
| if (document().childNeedsDistributionRecalc())
|
| - document().scheduleStyleRecalc();
|
| + document().scheduleRenderTreeUpdate();
|
| }
|
|
|
| namespace {
|
| @@ -746,7 +746,7 @@ void Node::markAncestorsWithChildNeedsStyleRecalc()
|
| p->setChildNeedsStyleRecalc();
|
|
|
| if (document().needsStyleRecalc() || document().childNeedsStyleRecalc())
|
| - document().scheduleStyleRecalc();
|
| + document().scheduleRenderTreeUpdate();
|
| }
|
|
|
| void Node::setNeedsStyleRecalc(StyleChangeType changeType)
|
|
|