summaryrefslogtreecommitdiff
path: root/Source/WebCore/css/StyleInvalidationAnalysis.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/css/StyleInvalidationAnalysis.h')
-rw-r--r--Source/WebCore/css/StyleInvalidationAnalysis.h40
1 files changed, 24 insertions, 16 deletions
diff --git a/Source/WebCore/css/StyleInvalidationAnalysis.h b/Source/WebCore/css/StyleInvalidationAnalysis.h
index cb242d253..33e25b639 100644
--- a/Source/WebCore/css/StyleInvalidationAnalysis.h
+++ b/Source/WebCore/css/StyleInvalidationAnalysis.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
+ * Copyright (C) 2012, 2014 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -10,10 +10,10 @@
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
@@ -23,33 +23,41 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef StyleInvalidationAnalysis_h
-#define StyleInvalidationAnalysis_h
+#pragma once
-#include <wtf/HashSet.h>
#include <wtf/text/AtomicStringImpl.h>
namespace WebCore {
class Document;
+class Element;
+class MediaQueryEvaluator;
+class RuleSet;
+class SelectorFilter;
+class ShadowRoot;
class StyleSheetContents;
class StyleInvalidationAnalysis {
public:
- StyleInvalidationAnalysis(const Vector<StyleSheetContents*>&);
+ StyleInvalidationAnalysis(const Vector<StyleSheetContents*>&, const MediaQueryEvaluator&);
+ StyleInvalidationAnalysis(const RuleSet&);
bool dirtiesAllStyle() const { return m_dirtiesAllStyle; }
+ bool hasShadowPseudoElementRulesInAuthorSheet() const { return m_hasShadowPseudoElementRulesInAuthorSheet; }
void invalidateStyle(Document&);
+ void invalidateStyle(ShadowRoot&);
+ void invalidateStyle(Element&);
private:
-
- void analyzeStyleSheet(StyleSheetContents*);
-
- bool m_dirtiesAllStyle;
- HashSet<AtomicStringImpl*> m_idScopes;
- HashSet<AtomicStringImpl*> m_classScopes;
+ enum class CheckDescendants { Yes, No };
+ CheckDescendants invalidateIfNeeded(Element&, const SelectorFilter*);
+ void invalidateStyleForTree(Element&, SelectorFilter*);
+
+ std::unique_ptr<RuleSet> m_ownedRuleSet;
+ const RuleSet& m_ruleSet;
+ bool m_dirtiesAllStyle { false };
+ bool m_hasShadowPseudoElementRulesInAuthorSheet { false };
+ bool m_didInvalidateHostChildren { false };
};
-}
-
-#endif
+} // namespace WebCore