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

  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ScopedStyleResolver.h 53 const TreeScope& treeScope() const { return m_scopingNode.treeScope(); }
ScopedStyleTree.cpp 138 TreeScope& treeScope = element->treeScope();
139 bool applyAuthorStyles = treeScope.applyAuthorStyles();
142 if (scopedResolver->treeScope() == treeScope || (applyAuthorStyles && scopedResolver->treeScope() == document))
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventRetargeter.cpp 28 #include "core/dom/TreeScope.h"
83 ASSERT(touchList->item(i)->target()->toNode()->treeScope().isInclusiveAncestorOf(node->treeScope()));
128 TreeScope* lastTreeScope = 0;
132 TreeScope* scope = &eventPath[i].node()->treeScope();
134 // Re-use the previous adjustedRelatedTarget if treeScope does not change. Just for the performance optimization.
144 if (node->treeScope().rootNode() == eventPath[i].node()) {
159 TreeScope* lastTreeScope = 0;
162 TreeScope* treeScope = &eventPath[i].node()->treeScope()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
ElementRuleCollector.cpp 122 TreeScope& treeScope = element->treeScope();
129 if (!scopingNode || treeScope == scopingNode->treeScope())
384 // should not see the element's treescope. Because RuleSet has no
  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisibleSelection.cpp 472 TreeScope& treeScope = startContainerNode->treeScope();
474 ASSERT(currentPosition.containerNode()->treeScope() != treeScope);
476 if (Node* ancestor = treeScope.ancestorInThisScope(currentPosition.containerNode())) {
482 if (Node* lastChild = treeScope.rootNode()->lastChild())
490 TreeScope& treeScope = endContainerNode->treeScope();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleEngine.cpp 104 void StyleEngine::insertTreeScopeInDocumentOrder(TreeScopeSet& treeScopes, TreeScope* treeScope)
107 treeScopes.add(treeScope);
110 if (treeScopes.contains(treeScope))
116 TreeScope* followingTreeScope = 0;
119 TreeScope* n = *it;
120 unsigned short position = n->comparePosition(*treeScope);
122 treeScopes.insertBefore(followingTreeScope, treeScope);
128 treeScopes.insertBefore(followingTreeScope, treeScope);
131 StyleSheetCollection* StyleEngine::ensureStyleSheetCollectionFor(TreeScope& treeScope
    [all...]
Node.h 32 #include "core/dom/TreeScope.h"
120 friend class TreeScope;
268 bool isTreeScope() const { return treeScope().rootNode() == this; }
474 TreeScope& treeScope() const
    [all...]

Completed in 885 milliseconds