Home
last modified time | relevance | path

Searched refs:hoverAncestor (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderObject.cpp3156 RenderObject* RenderObject::hoverAncestor() const in hoverAncestor() function in WebCore::RenderObject
3162 RenderObject* hoverAncestor = parent(); in hoverAncestor() local
3166 …if (hoverAncestor && hoverAncestor->isAnonymousBlock() && hoverAncestor->parent() && hoverAncestor in hoverAncestor()
3167 hoverAncestor = hoverAncestor->parent(); in hoverAncestor()
3169 if (hoverAncestor && hoverAncestor->isRenderNamedFlowThread()) { in hoverAncestor()
3170 hoverAncestor = 0; in hoverAncestor()
3176 hoverAncestor = domAncestorNode->renderer(); in hoverAncestor()
3180 return hoverAncestor; in hoverAncestor()
DRenderBlock.h558 virtual RenderObject* hoverAncestor() const OVERRIDE FINAL;
DRenderObject.h617 virtual RenderObject* hoverAncestor() const;
DRenderBlock.cpp5187 RenderObject* RenderBlock::hoverAncestor() const in hoverAncestor() function in WebCore::RenderBlock
5189 return isAnonymousBlockContinuation() ? continuation() : RenderBox::hoverAncestor(); in hoverAncestor()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.cpp4978 for (RenderObject* currObj1 = obj1; currObj1; currObj1 = currObj1->hoverAncestor()) { in nearestCommonHoverAncestor()
4979 for (RenderObject* currObj2 = obj2; currObj2; currObj2 = currObj2->hoverAncestor()) { in nearestCommonHoverAncestor()
5069 … for (RenderObject* curr = oldHoverObj; curr && curr != ancestor; curr = curr->hoverAncestor()) { in updateHoverActiveState()
5076 for (RenderObject* curr = newHoverObj; curr; curr = curr->hoverAncestor()) { in updateHoverActiveState()