HomeSort by relevance Sort by last modified time
    Searched defs:SelectorChecker (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.h 43 class SelectorChecker {
44 WTF_MAKE_NONCOPYABLE(SelectorChecker);
49 explicit SelectorChecker(Document&, Mode);
145 inline bool SelectorChecker::isCommonPseudoClassSelector(const CSSSelector& selector)
156 inline bool SelectorChecker::tagMatches(const Element& element, const QualifiedName& tagQName)
167 inline bool SelectorChecker::checkExactAttribute(const Element& element, const QualifiedName& selectorAttributeName, const StringImpl* value)
180 inline bool SelectorChecker::isHostInItsShadowTree(const Element& element, BehaviorAtBoundary behaviorAtBoundary, const ContainerNode* scope)
SelectorChecker.cpp 29 #include "core/css/SelectorChecker.h"
61 SelectorChecker::SelectorChecker(Document& document, Mode mode)
80 Element* SelectorChecker::parentElement(const SelectorCheckingContext& context, bool allowToCrossBoundary) const
87 if ((context.behaviorAtBoundary & SelectorChecker::ScopeIsShadowRoot) && context.scope == context.element->containingShadowRoot())
90 if ((context.behaviorAtBoundary & SelectorChecker::BoundaryBehaviorMask) != SelectorChecker::StaysWithinTreeScope)
103 bool SelectorChecker::scopeContainsLastMatchedElement(const SelectorCheckingContext& context) const
105 if (!(context.behaviorAtBoundary & SelectorChecker::ScopeContainsLastMatchedElement))
118 static inline bool nextSelectorExceedsScope(const SelectorChecker::SelectorCheckingContext& context
    [all...]

Completed in 42 milliseconds