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

  /external/chromium_org/third_party/WebKit/Source/core/css/
PseudoStyleRequest.h 35 PseudoStyleRequest(PseudoId pseudoId, RenderScrollbar* scrollbar = 0, ScrollbarPart scrollbarPart = NoPart)
36 : pseudoId(pseudoId)
45 return parentStyle && pseudoId != BACKDROP;
48 PseudoId pseudoId;
CSSSelector.cpp 162 PseudoId CSSSelector::pseudoId(PseudoType type)
ElementRuleCollector.cpp 144 const AtomicString& pseudoId = element.shadowPseudoId();
145 if (!pseudoId.isEmpty()) {
147 collectMatchingRulesForList(matchRequest.ruleSet->shadowPseudoElementRules(pseudoId), behaviorAtBoundary, ignoreCascadeScope, cascadeOrder, matchRequest, ruleRange);
266 context.pseudoId = m_pseudoStyleRequest.pseudoId;
273 if (m_pseudoStyleRequest.pseudoId != NOPSEUDO && m_pseudoStyleRequest.pseudoId != result->dynamicPseudo)
294 PseudoId dynamicPseudo = result.dynamicPseudo;
297 if (dynamicPseudo != NOPSEUDO && m_pseudoStyleRequest.pseudoId == NOPSEUDO) {
SelectorChecker.h 70 , pseudoId(NOPSEUDO)
85 PseudoId pseudoId;
100 PseudoId dynamicPseudo;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
StylesSidebarPane.js 75 // Keep in sync with RenderStyleConstants.h PseudoId enum. Array below contains pseudo id names for corresponding enum indexes.
488 for (var pseudoId in this.sections) {
489 var styleRules = this._refreshStyleRules(this.sections[pseudoId], computedStyle);
519 var pseudoId = pseudoElementCSSRules.pseudoId;
521 var entry = { isStyleSeparator: true, pseudoId: pseudoId };
531 this.sections[pseudoId] = this._rebuildSectionsForStyleRules(styleRules, usedProperties, anchorElement);
737 } else if ("pseudoId" in styleRule) {
738 var pseudoName = WebInspector.StylesSidebarPane.PseudoIdNames[styleRule.pseudoId];
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Node.h 229 bool isPseudoElement() const { return pseudoId() != NOPSEUDO; }
230 bool isBeforePseudoElement() const { return pseudoId() == BEFORE; }
231 bool isAfterPseudoElement() const { return pseudoId() == AFTER; }
232 PseudoId pseudoId() const { return (isElementNode() && hasCustomStyleCallbacks()) ? customPseudoId() : NOPSEUDO; }
552 RenderStyle* computedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) { return virtualComputedStyle(pseudoElementSpecifier); }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalDOMWindow.cpp     [all...]

Completed in 628 milliseconds