| Index: sky/engine/core/dom/Document.cpp
|
| diff --git a/sky/engine/core/dom/Document.cpp b/sky/engine/core/dom/Document.cpp
|
| index f0d8bcf8a5ab7b0297a90398f6140d180bf3bd4e..76d32cc1ba4cf4f5df6244171ed8bd857205b1f4 100644
|
| --- a/sky/engine/core/dom/Document.cpp
|
| +++ b/sky/engine/core/dom/Document.cpp
|
| @@ -1587,15 +1587,6 @@ void Document::hoveredNodeDetached(Node* node)
|
| m_hoverNode = NodeRenderingTraversal::parent(node);
|
| while (m_hoverNode && !m_hoverNode->renderer())
|
| m_hoverNode = NodeRenderingTraversal::parent(m_hoverNode.get());
|
| -
|
| - // If the mouse cursor is not visible, do not clear existing
|
| - // hover effects on the ancestors of |node| and do not invoke
|
| - // new hover effects on any other element.
|
| - if (!page()->isCursorVisible())
|
| - return;
|
| -
|
| - if (frame())
|
| - frame()->eventHandler().scheduleHoverStateUpdate();
|
| }
|
|
|
| void Document::activeChainNodeDetached(Node* node)
|
|
|