3 Move side-effects on hover/active state out of hit-testing.
4 https://bugs.webkit.org/show_bug.cgi?id=98168
5
6 Reviewed by NOBODY (OOPS!).
7
8 This patch changes hit-testing so that it no longer has any side-effects and is really purely
9 a hit-test. This will help enable further clean-up and optimizations.
10
11 No change in functionality. No new tests.
12
13 * dom/Document.cpp:
14 (WebCore::Document::prepareMouseEvent):
15 (WebCore::Document::updateHoverActiveState):
16 * dom/Document.h:
17 (Document):
18 * page/EventHandler.cpp:
19 (WebCore::EventHandler::hitTestResultAtPoint):
20 (WebCore::EventHandler::sendContextMenuEventForKey):
21 (WebCore::EventHandler::hoverTimerFired):
22 * rendering/RenderView.cpp:
23 (WebCore::RenderView::hitTest):
24
252012-10-02 Allan Sandfeld Jensen <allan.jensen@digia.com>
26