| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 continue; | 51 continue; |
| 52 | 52 |
| 53 StyleSheet* sheet = toHTMLStyleElement(node)->sheet(); | 53 StyleSheet* sheet = toHTMLStyleElement(node)->sheet(); |
| 54 if (sheet) | 54 if (sheet) |
| 55 collection.appendSheetForList(sheet); | 55 collection.appendSheetForList(sheet); |
| 56 if (sheet && sheet->isCSSStyleSheet()) | 56 if (sheet && sheet->isCSSStyleSheet()) |
| 57 collection.appendActiveStyleSheet(toCSSStyleSheet(sheet)); | 57 collection.appendActiveStyleSheet(toCSSStyleSheet(sheet)); |
| 58 } | 58 } |
| 59 } | 59 } |
| 60 | 60 |
| 61 void ShadowTreeStyleSheetCollection::updateActiveStyleSheets(StyleEngine* engine
, StyleResolverUpdateMode updateMode) | 61 void ShadowTreeStyleSheetCollection::updateActiveStyleSheets(StyleEngine* engine
) |
| 62 { | 62 { |
| 63 StyleSheetCollection collection; | 63 StyleSheetCollection collection; |
| 64 collectStyleSheets(engine, collection); | 64 collectStyleSheets(engine, collection); |
| 65 | 65 |
| 66 StyleSheetChange change; | 66 if (StyleResolver* styleResolver = engine->resolver()) { |
| 67 analyzeStyleSheetChange(updateMode, collection, change); | 67 // We should not destroy StyleResolver when we find any stylesheet updat
e in a shadow tree. |
| 68 // In this case, we will reset rulesets created from style elements in t
he shadow tree. |
| 69 styleResolver->resetAuthorStyle(treeScope()); |
| 70 styleResolver->removePendingAuthorStyleSheets(m_activeAuthorStyleSheets)
; |
| 71 styleResolver->lazyAppendAuthorStyleSheets(0, collection.activeAuthorSty
leSheets()); |
| 72 } |
| 68 | 73 |
| 69 if (StyleResolver* styleResolver = engine->resolver()) { | 74 toShadowRoot(treeScope().rootNode()).host()->setNeedsStyleRecalc(SubtreeStyl
eChange); |
| 70 if (change.styleResolverUpdateType != Additive) { | |
| 71 // We should not destroy StyleResolver when we find any stylesheet u
pdate in a shadow tree. | |
| 72 // In this case, we will reset rulesets created from style elements
in the shadow tree. | |
| 73 styleResolver->resetAuthorStyle(treeScope()); | |
| 74 styleResolver->removePendingAuthorStyleSheets(m_activeAuthorStyleShe
ets); | |
| 75 styleResolver->lazyAppendAuthorStyleSheets(0, collection.activeAutho
rStyleSheets()); | |
| 76 } else { | |
| 77 styleResolver->lazyAppendAuthorStyleSheets(m_activeAuthorStyleSheets
.size(), collection.activeAuthorStyleSheets()); | |
| 78 } | |
| 79 } | |
| 80 if (change.requiresFullStyleRecalc) | |
| 81 toShadowRoot(treeScope().rootNode()).host()->setNeedsStyleRecalc(Subtree
StyleChange); | |
| 82 | 75 |
| 83 collection.swap(*this); | 76 collection.swap(*this); |
| 84 updateUsesRemUnits(); | 77 updateUsesRemUnits(); |
| 85 } | 78 } |
| 86 | 79 |
| 87 } | 80 } |
| OLD | NEW |