Searched defs:treeScope (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDOMSelection.h52 static PassRefPtr<DOMSelection> create(const TreeScope* treeScope) { return adoptRef(new DOMSelection(treeScope)); } argument
H A DDOMSelection.cpp61 DOMSelection::DOMSelection(const TreeScope* treeScope) argument
62 : DOMWindowProperty(treeScope->rootNode()->document()->frame())
63 , m_treeScope(treeScope)
H A DFocusController.cpp66 FocusNavigationScope::FocusNavigationScope(TreeScope* treeScope) argument
67 : m_rootTreeScope(treeScope)
69 ASSERT(treeScope);
70 ASSERT(!treeScope->rootNode()->isShadowRoot() || toShadowRoot(treeScope->rootNode())->isYoungest());
96 return FocusNavigationScope(root->treeScope());
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCharacterData.h54 CharacterData(TreeScope* treeScope, const String& text, ConstructionType type) argument
55 : Node(treeScope, type)
H A DNotation.cpp26 Notation::Notation(TreeScope* treeScope, const String& name, const String& publicId, const String& systemId) argument
27 : ContainerNode(treeScope)
H A DText.h60 Text(TreeScope* treeScope, const String& data, ConstructionType type) argument
61 : CharacterData(treeScope, data, type)
H A DContainerNode.h188 inline ContainerNode::ContainerNode(TreeScope* treeScope, ConstructionType type) argument
189 : Node(treeScope, type)
H A DStyleSheetCollection.cpp53 StyleSheetCollection::StyleSheetCollection(TreeScope* treeScope) argument
54 : m_treeScope(treeScope)
H A DNode.h275 bool isTreeScope() const { return treeScope()->rootNode() == this; }
495 TreeScope* treeScope() const { return m_treeScope; } function in class:WebCore::Node
784 Node(TreeScope* treeScope, ConstructionType type) argument
787 , m_treeScope(treeScope)
816 Document* documentInternal() const { return treeScope()->documentScope(); }
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DScopedStyleResolver.h58 const TreeScope* treeScope() const { return m_scopingNode->treeScope(); } function in class:WebCore::ScopedStyleResolver
H A DScopedStyleResolver.cpp148 TreeScope* treeScope = element->treeScope(); local
149 bool applyAuthorStyles = treeScope->applyAuthorStyles();
152 if (scopedResolver->treeScope() == treeScope || (applyAuthorStyles && scopedResolver->treeScope() == document))
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DElementRuleCollector.cpp103 TreeScope* treeScope = element->treeScope(); local
110 if (!scopingNode || treeScope == scopingNode->treeScope())
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DVisibleSelection.cpp470 TreeScope* treeScope = startContainerNode->treeScope(); local
472 ASSERT(currentPosition.containerNode()->treeScope() != treeScope);
474 if (Node* ancestor = treeScope->ancestorInThisScope(currentPosition.containerNode())) {
480 if (Node* lastChild = treeScope->rootNode()->lastChild())
488 TreeScope* treeScope = endContainerNode->treeScope(); local
490 ASSERT(currentPosition.containerNode()->treeScope() != treeScope);
[all...]

Completed in 465 milliseconds