Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBlock.h389 virtual RenderObject* hoverAncestor() const OVERRIDE FINAL;
DRenderObject.h653 virtual RenderObject* hoverAncestor() const { return parent(); } in hoverAncestor() function
DRenderBlock.cpp3929 RenderObject* RenderBlock::hoverAncestor() const in hoverAncestor() function in blink::RenderBlock
3931 return isAnonymousBlockContinuation() ? continuation() : RenderBox::hoverAncestor(); in hoverAncestor()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.cpp5350 for (RenderObject* currObj1 = obj1; currObj1; currObj1 = currObj1->hoverAncestor()) { in nearestCommonHoverAncestor()
5351 for (RenderObject* currObj2 = obj2; currObj2; currObj2 = currObj2->hoverAncestor()) { in nearestCommonHoverAncestor()
5439 … for (RenderObject* curr = oldHoverObj; curr && curr != ancestor; curr = curr->hoverAncestor()) { in updateHoverActiveState()
5446 for (RenderObject* curr = newHoverObj; curr; curr = curr->hoverAncestor()) { in updateHoverActiveState()