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.cpp 29 #include "core/css/SelectorChecker.h"
66 SelectorChecker::SelectorChecker(Document* document, Mode mode)
95 Element* SelectorChecker::parentElement(const SelectorCheckingContext& context) const
98 if ((context.behaviorAtBoundary & SelectorChecker::BoundaryBehaviorMask) == SelectorChecker::CrossesBoundary)
102 if (!(context.behaviorAtBoundary & SelectorChecker::ScopeIsShadowHost))
106 return (context.behaviorAtBoundary & SelectorChecker::BoundaryBehaviorMask) != SelectorChecker::StaysWithinTreeScope ? context.element->parentOrShadowHostElement() : context.element->parentElement();
109 bool SelectorChecker::scopeContainsLastMatchedElement(const SelectorCheckingContext& context) cons
    [all...]
SelectorChecker.h 41 class SelectorChecker {
42 WTF_MAKE_NONCOPYABLE(SelectorChecker);
47 explicit SelectorChecker(Document*, Mode);
121 inline bool SelectorChecker::isCommonPseudoClassSelector(const CSSSelector* selector)
132 inline bool SelectorChecker::tagMatches(const Element* element, const QualifiedName& tagQName)
143 inline bool SelectorChecker::checkExactAttribute(const Element* element, const QualifiedName& selectorAttributeName, const StringImpl* value)

Completed in 84 milliseconds