| Index: Source/core/dom/Document.cpp
|
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
|
| index 8d9b100ef95427b73eac4fbb64329e322b96b320..ee14205b4e5345be5b0b9cf17fb1792324530423 100644
|
| --- a/Source/core/dom/Document.cpp
|
| +++ b/Source/core/dom/Document.cpp
|
| @@ -3138,7 +3138,7 @@ void Document::evaluateMediaQueryList()
|
| m_mediaQueryMatcher->styleResolverChanged();
|
| }
|
|
|
| -void Document::styleResolverChanged(StyleResolverUpdateType updateType, StyleResolverUpdateMode updateMode)
|
| +void Document::styleResolverChanged(RecalcStyleTime updateTime, StyleResolverUpdateMode updateMode)
|
| {
|
| // Don't bother updating, since we haven't loaded all our style info yet
|
| // and haven't calculated the style selector for the first time.
|
| @@ -3163,7 +3163,7 @@ void Document::styleResolverChanged(StyleResolverUpdateType updateType, StyleRes
|
| m_evaluateMediaQueriesOnStyleRecalc = true;
|
| setNeedsStyleRecalc();
|
|
|
| - if (updateType == RecalcStyleImmediately)
|
| + if (updateTime == RecalcStyleImmediately)
|
| updateStyleIfNeeded();
|
| }
|
|
|
|
|