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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScopeTest.cpp 20 EXPECT_EQ(document.get(), document->commonAncestorTreeScope(*document));
25 EXPECT_EQ(shadowRoot.get(), shadowRoot->commonAncestorTreeScope(*shadowRoot));
39 EXPECT_EQ(document.get(), document->commonAncestorTreeScope(*shadowRoot));
40 EXPECT_EQ(document.get(), shadowRoot->commonAncestorTreeScope(*document));
60 EXPECT_EQ(document.get(), shadowRootA->commonAncestorTreeScope(*shadowRootB));
61 EXPECT_EQ(document.get(), shadowRootB->commonAncestorTreeScope(*shadowRootA));
87 EXPECT_EQ(document.get(), shadowRootA->commonAncestorTreeScope(*shadowRootB));
88 EXPECT_EQ(document.get(), shadowRootB->commonAncestorTreeScope(*shadowRootA));
95 EXPECT_EQ(0, document1->commonAncestorTreeScope(*document2));
96 EXPECT_EQ(0, document2->commonAncestorTreeScope(*document1))
    [all...]
TreeScope.h 131 const TreeScope* commonAncestorTreeScope(const TreeScope& other) const;
132 TreeScope* commonAncestorTreeScope(TreeScope& other);
TreeScope.cpp 434 const TreeScope* TreeScope::commonAncestorTreeScope(const TreeScope& other) const
455 TreeScope* TreeScope::commonAncestorTreeScope(TreeScope& other)
457 return const_cast<TreeScope*>(static_cast<const TreeScope&>(*this).commonAncestorTreeScope(other));
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp 326 const TreeScope* commonAncestorTreeScope = startContainer->treeScope().commonAncestorTreeScope(endContainer->treeScope());
327 ASSERT(commonAncestorTreeScope);
329 for (const TreeScope* treeScope = &startContainer->treeScope(); treeScope != commonAncestorTreeScope; treeScope = treeScope->parentTreeScope())
    [all...]

Completed in 110 milliseconds