[Webkit-unassigned] [Bug 266932] New: Mousemove event should be fired when the mouse stays in the document but there is no element
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Dec 29 10:27:02 PST 2023
https://bugs.webkit.org/show_bug.cgi?id=266932
Bug ID: 266932
Summary: Mousemove event should be fired when the mouse stays
in the document but there is no element
Product: WebKit
Version: WebKit Nightly Build
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: UI Events
Assignee: webkit-unassigned at lists.webkit.org
Reporter: ahmad.saleem792 at gmail.com
CC: a_protyasha at apple.com, simon.fraser at apple.com
Hi Team,
While looking into Blink's commit, I came across another potential merge.
Blink Commit: https://src.chromium.org/viewvc/blink?view=revision&revision=182622
WebKit Source: https://github.com/WebKit/WebKit/blob/7883e9ca30c85590b7ac6f16a8b2bbec71fa9d51/Source/WebCore/rendering/RenderLayer.cpp#L4021
Following compiles:
LayoutPoint hitPoint = hitTestLocation.point();
if (!request.isChildFrameHitTest() && ((request.active() || request.release()) || (request.move() && hitTestArea.contains(hitPoint.x(), hitPoint.y()))) && isRenderViewLayer()) {
// if (!request.isChildFrameHitTest() && (request.active() || request.release()) && isRenderViewLayer()) {
renderer().updateHitTestResult(result, downcast<RenderView>(renderer()).flipForWritingMode(hitTestLocation.point()));
insideLayer = { this };
}
___
We don't start to pass all tests from added but we do pass few more than before, if we merge this.
Just wanted to raise to get input.
Thanks!
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20231229/697b0494/attachment.htm>
More information about the webkit-unassigned
mailing list