| Index: Source/core/dom/Document.cpp
|
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
|
| index b92a8112c0063ca79affb5a4686305a1ec804699..f0646e00938b2c9b97d9f1dede4518d6ef68fac9 100644
|
| --- a/Source/core/dom/Document.cpp
|
| +++ b/Source/core/dom/Document.cpp
|
| @@ -5736,6 +5736,14 @@ void Document::invalidateNodeListCaches(const QualifiedName* attrName)
|
| list->invalidateCacheForAttribute(attrName);
|
| }
|
|
|
| +void Document::platformColorsChanged()
|
| +{
|
| + if (!isActive())
|
| + return;
|
| +
|
| + styleEngine()->platformColorsChanged();
|
| +}
|
| +
|
| void Document::clearWeakMembers(Visitor* visitor)
|
| {
|
| if (m_axObjectCache)
|
|
|