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

  /external/chromium_org/third_party/WebKit/Source/core/events/
TreeScopeEventContext.cpp 45 TreeScope& treeScope = path[i].treeScopeEventContext().treeScope();
46 if (treeScope.rootNode().isShadowRoot() && toShadowRoot(treeScope).type() == ShadowRoot::AuthorShadowRoot)
62 PassRefPtrWillBeRawPtr<TreeScopeEventContext> TreeScopeEventContext::create(TreeScope& treeScope)
64 return adoptRefWillBeNoop(new TreeScopeEventContext(treeScope));
67 TreeScopeEventContext::TreeScopeEventContext(TreeScope& treeScope)
    [all...]
TreeScopeEventContext.h 31 #include "core/dom/TreeScope.h"
44 class TreeScope;
49 static PassRefPtrWillBeRawPtr<TreeScopeEventContext> create(TreeScope&);
52 TreeScope& treeScope() const { return *m_treeScope; }
73 TreeScopeEventContext(TreeScope&);
79 RawPtrWillBeMember<TreeScope> m_treeScope;
94 return target.toNode() && !target.toNode()->isSVGElement() && !target.toNode()->treeScope().isInclusiveOlderSiblingShadowRootOrAncestorTreeScopeOf(treeScope());
EventPath.cpp 58 return target->toNode() && target->toNode()->treeScope().rootNode() == shadowRoot;
158 WillBeHeapHashMap<RawPtrWillBeMember<const TreeScope>, RawPtrWillBeMember<TreeScopeEventContext> > treeScopeEventContextMap;
160 treeScopeEventContextMap.add(&m_treeScopeEventContexts[i]->treeScope(), m_treeScopeEventContexts[i].get());
166 TreeScope* parent = treeScopeEventContext->treeScope().olderShadowRootOrParentTreeScope();
179 TreeScopeEventContext* EventPath::ensureTreeScopeEventContext(Node* currentTarget, TreeScope* treeScope, TreeScopeEventContextMap& treeScopeEventContextMap)
181 if (!treeScope)
186 TreeScopeEventContextMap::AddResult addResult = treeScopeEventContextMap.add(treeScope, nullptr);
188 addResult.storedValue->value = TreeScopeEventContext::create(*treeScope);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ScopedStyleResolver.h 53 const TreeScope& treeScope() const { return m_scopingNode.treeScope(); }
ScopedStyleTree.cpp 137 TreeScope& treeScope = element->treeScope();
138 bool applyAuthorStyles = treeScope.applyAuthorStyles();
145 if (scopedResolver->treeScope() == treeScope || (applyAuthorStyles && scopedResolver->treeScope() == document))
  /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);
106 TreeScope& treeScope = scopingNode ? scopingNode->treeScope() : element->treeScope();
107 document.styleEngine()->removeStyleSheetCandidateNode(element, scopingNode, treeScope);
StyleEngine.cpp 119 void StyleEngine::insertTreeScopeInDocumentOrder(TreeScopeSet& treeScopes, TreeScope* treeScope)
122 treeScopes.add(treeScope);
125 if (treeScopes.contains(treeScope))
131 TreeScope* followingTreeScope = 0;
134 TreeScope* n = *it;
135 unsigned short position = n->comparePosition(*treeScope);
137 treeScopes.insertBefore(followingTreeScope, treeScope);
143 treeScopes.insertBefore(followingTreeScope, treeScope);
146 TreeScopeStyleSheetCollection* StyleEngine::ensureStyleSheetCollectionFor(TreeScope& treeScope
    [all...]
Node.h 32 #include "core/dom/TreeScope.h"
121 friend class TreeScope;
266 bool isTreeScope() const { return &treeScope().rootNode() == this; }
460 return treeScope().document();
463 TreeScope& treeScope() const
756 Node(TreeScope*, ConstructionType);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
ElementRuleCollector.cpp 123 TreeScope& treeScope = element->treeScope();
130 if (!scopingNode || treeScope == scopingNode->treeScope())
341 // should not see the element's treescope. Because RuleSet has no
  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisibleSelection.cpp 533 TreeScope& treeScope = startContainerNode->treeScope();
535 ASSERT(currentPosition.containerNode()->treeScope() != treeScope);
537 if (Node* ancestor = treeScope.ancestorInThisScope(currentPosition.containerNode())) {
543 if (Node* lastChild = treeScope.rootNode().lastChild())
551 TreeScope& treeScope = endContainerNode->treeScope();
    [all...]

Completed in 178 milliseconds