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

  /external/chromium_org/third_party/WebKit/Source/core/css/
TreeBoundaryCrossingRules.cpp 47 void TreeBoundaryCrossingRules::addTreeBoundaryCrossingRules(const RuleSet& authorRules, CSSStyleSheet* parentStyleSheet, unsigned parentIndex, ContainerNode& scopingNode)
49 if (authorRules.treeBoundaryCrossingRules().isEmpty() && (scopingNode.isDocumentNode() || authorRules.shadowDistributedRules().isEmpty()))
53 if (!scopingNode.isDocumentNode())
56 if (!m_treeBoundaryCrossingRuleSetMap.contains(&scopingNode)) {
57 m_treeBoundaryCrossingRuleSetMap.add(&scopingNode, adoptPtrWillBeNoop(new CSSStyleSheetRuleSubSet()));
58 m_scopingNodes.add(&scopingNode);
60 CSSStyleSheetRuleSubSet* ruleSubSet = m_treeBoundaryCrossingRuleSetMap.get(&scopingNode);
77 const ContainerNode* scopingNode = toContainerNode(*it);
78 CSSStyleSheetRuleSubSet* ruleSubSet = m_treeBoundaryCrossingRuleSetMap.get(scopingNode);
79 bool isInnerTreeScope = element->treeScope().isInclusiveAncestorOf(scopingNode->treeScope())
    [all...]
TreeBoundaryCrossingRules.h 45 void reset(const ContainerNode* scopingNode);
ElementRuleCollector.cpp 121 static bool rulesApplicableInCurrentTreeScope(const Element* element, const ContainerNode* scopingNode, bool matchingTreeBoundaryRules)
128 if (!scopingNode || element->treeScope() == scopingNode->treeScope())
131 if (SelectorChecker::isHostInItsShadowTree(*element, scopingNode))
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLStyleElement.cpp 101 ShadowRoot* scopingNode = containingShadowRoot();
102 if (!scopingNode)
103 scopingNode = insertionPoint->containingShadowRoot();
105 if (scopingNode)
106 scopingNode->unregisterScopedHTMLStyleChild();
109 StyleElement::removedFromDocument(document(), this, scopingNode, containingScope ? *containingScope : insertionPoint->treeScope());
133 ContainerNode* HTMLStyleElement::scopingNode()
HTMLStyleElement.h 43 ContainerNode* scopingNode();
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleElement.cpp 82 void StyleElement::removedFromDocument(Document& document, Element* element, ContainerNode* scopingNode, TreeScope& treeScope)
87 document.styleEngine()->removeStyleSheetCandidateNode(element, scopingNode, treeScope);
105 ContainerNode* scopingNode = isHTMLStyleElement(element) ? toHTMLStyleElement(element)->scopingNode() : 0;
106 TreeScope& treeScope = scopingNode ? scopingNode->treeScope() : element->treeScope();
107 document.styleEngine()->removeStyleSheetCandidateNode(element, scopingNode, treeScope);
StyleElement.h 52 void removedFromDocument(Document&, Element*, ContainerNode* scopingNode, TreeScope&);
TreeScopeStyleSheetCollection.h 52 void removeStyleSheetCandidateNode(Node*, ContainerNode* scopingNode);
TreeScopeStyleSheetCollection.cpp 64 void TreeScopeStyleSheetCollection::removeStyleSheetCandidateNode(Node* node, ContainerNode* scopingNode)
StyleEngine.h 88 void removeStyleSheetCandidateNode(Node*, ContainerNode* scopingNode, TreeScope&);
StyleEngine.cpp 308 void StyleEngine::removeStyleSheetCandidateNode(Node* node, ContainerNode* scopingNode, TreeScope& treeScope)
315 collection->removeStyleSheetCandidateNode(node, scopingNode);

Completed in 122 milliseconds