HomeSort by relevance Sort by last modified time
    Searched refs:styleResolverUpdateType (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentStyleSheetCollection.cpp 165 if (change.styleResolverUpdateType == Reconstruct) {
172 if (change.styleResolverUpdateType != Additive) {
173 ASSERT(change.styleResolverUpdateType == Reset || change.styleResolverUpdateType == ResetStyleResolverAndFontSelector);
175 if (change.styleResolverUpdateType == ResetStyleResolverAndFontSelector)
182 } else if (change.styleResolverUpdateType == ResetStyleResolverAndFontSelector) {
StyleSheetCollection.h 98 enum StyleResolverUpdateType {
106 StyleResolverUpdateType styleResolverUpdateType;
110 : styleResolverUpdateType(Reconstruct)
119 static StyleResolverUpdateType compareStyleSheets(const Vector<RefPtr<CSSStyleSheet> >& oldStyleSheets, const Vector<RefPtr<CSSStyleSheet> >& newStylesheets, Vector<StyleSheetContents*>& addedSheets);
StyleSheetCollection.cpp 109 StyleSheetCollection::StyleResolverUpdateType StyleSheetCollection::compareStyleSheets(const Vector<RefPtr<CSSStyleSheet> >& oldStyleSheets, const Vector<RefPtr<CSSStyleSheet> >& newStylesheets, Vector<StyleSheetContents*>& addedSheets)
186 change.styleResolverUpdateType = compareStyleSheets(m_activeAuthorStyleSheets, newCollection.activeAuthorStyleSheets(), addedSheets);
188 StyleResolverUpdateType updateType = compareStyleSheets(newCollection.activeAuthorStyleSheets(), m_activeAuthorStyleSheets, addedSheets);
190 change.styleResolverUpdateType = updateType;
193 change.styleResolverUpdateType = ResetStyleResolverAndFontSelector;
201 change.styleResolverUpdateType = ResetStyleResolverAndFontSelector;
203 change.styleResolverUpdateType = Reset;
207 // FIXME: If styleResolverUpdateType is Reconstruct, we should return early here since
ShadowTreeStyleSheetCollection.cpp 105 if (change.styleResolverUpdateType != Additive) {

Completed in 306 milliseconds