OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) |
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
9 * Copyright (C) 2013 Google Inc. All rights reserved. | 9 * Copyright (C) 2013 Google Inc. All rights reserved. |
10 * | 10 * |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
157 bool DocumentStyleSheetCollection::updateActiveStyleSheets(StyleEngine* engine, StyleResolverUpdateMode updateMode) | 157 bool DocumentStyleSheetCollection::updateActiveStyleSheets(StyleEngine* engine, StyleResolverUpdateMode updateMode) |
158 { | 158 { |
159 StyleSheetCollectionBase collection; | 159 StyleSheetCollectionBase collection; |
160 engine->collectDocumentActiveStyleSheets(collection); | 160 engine->collectDocumentActiveStyleSheets(collection); |
161 | 161 |
162 StyleSheetChange change; | 162 StyleSheetChange change; |
163 analyzeStyleSheetChange(updateMode, collection, change); | 163 analyzeStyleSheetChange(updateMode, collection, change); |
164 | 164 |
165 if (change.styleResolverUpdateType == Reconstruct) { | 165 if (change.styleResolverUpdateType == Reconstruct) { |
166 engine->clearMasterResolver(); | 166 engine->clearMasterResolver(); |
167 engine->resetFontSelector(); | |
ojan
2013/12/18 00:20:02
Is removing this line correct? In the reconstruct
tasak
2013/12/18 05:12:23
You are right.
If StyleFontFaceRule is updated by
| |
168 } else if (StyleResolver* styleResolver = engine->resolver()) { | 167 } else if (StyleResolver* styleResolver = engine->resolver()) { |
169 // FIXME: We might have already had styles in child treescope. In this c ase, we cannot use buildScopedStyleTreeInDocumentOrder. | 168 // FIXME: We might have already had styles in child treescope. In this c ase, we cannot use buildScopedStyleTreeInDocumentOrder. |
170 // Need to change "false" to some valid condition. | 169 // Need to change "false" to some valid condition. |
171 styleResolver->setBuildScopedStyleTreeInDocumentOrder(false); | 170 styleResolver->setBuildScopedStyleTreeInDocumentOrder(false); |
172 if (change.styleResolverUpdateType != Additive) { | 171 if (change.styleResolverUpdateType != Additive) { |
173 ASSERT(change.styleResolverUpdateType == Reset || change.styleResolv erUpdateType == ResetStyleResolverAndFontSelector); | 172 ASSERT(change.styleResolverUpdateType == Reset); |
174 resetAllRuleSetsInTreeScope(styleResolver); | 173 resetAllRuleSetsInTreeScope(styleResolver); |
175 if (change.styleResolverUpdateType == ResetStyleResolverAndFontSelec tor) | 174 engine->removeFontFaceRules(change.fontFaceRulesToRemove); |
176 engine->resetFontSelector(); | |
177 styleResolver->removePendingAuthorStyleSheets(m_activeAuthorStyleShe ets); | 175 styleResolver->removePendingAuthorStyleSheets(m_activeAuthorStyleShe ets); |
178 styleResolver->lazyAppendAuthorStyleSheets(0, collection.activeAutho rStyleSheets()); | 176 styleResolver->lazyAppendAuthorStyleSheets(0, collection.activeAutho rStyleSheets()); |
179 } else { | 177 } else { |
180 styleResolver->lazyAppendAuthorStyleSheets(m_activeAuthorStyleSheets .size(), collection.activeAuthorStyleSheets()); | 178 styleResolver->lazyAppendAuthorStyleSheets(m_activeAuthorStyleSheets .size(), collection.activeAuthorStyleSheets()); |
181 } | 179 } |
182 } else if (change.styleResolverUpdateType == ResetStyleResolverAndFontSelect or) { | |
183 engine->resetFontSelector(); | |
184 } | 180 } |
185 m_scopingNodesForStyleScoped.didRemoveScopingNodes(); | 181 m_scopingNodesForStyleScoped.didRemoveScopingNodes(); |
186 collection.swap(*this); | 182 collection.swap(*this); |
187 updateUsesRemUnits(); | 183 updateUsesRemUnits(); |
188 | 184 |
189 return change.requiresFullStyleRecalc; | 185 return change.requiresFullStyleRecalc; |
190 } | 186 } |
191 | 187 |
192 } | 188 } |
OLD | NEW |