Drags continue even if the layout shifts on drag start - #61527
Merged
Conversation
chromium-wpt-export-bot
marked this pull request as ready for review
July 27, 2026 18:03
This CL fixes a bug with drag and drop where a drag will not happen if the `dragstart` listener removes the drag source or generates a layout shift. When a drag starts, blink will try hit-testing the drag start location *after* the `dragstart` event is fired to determine the dragged element and create an overlay image for it. If listeners of the `dragstart` event caused a layout shift or removed the element from the document, then the hit test will fail and the drag operation will be aborted. This CL reorders the steps in the sequence to create a drag by moving the hit testing and image overlay generation to *before* the `dragstart` event is fired in `PopulateDragDataTransfer`. With this change, even if `dragstart` removes an element from the document, the user will still be presented with the correct drag overlay image. In addition to the new tests in this CL, these changes were manually verified in the WPT remove/ and overlay/ drag and drop directories to confirm correct UA behavior. Bug: 434130455 Change-Id: I84bab2edb505b113e8a9481109f196d225d77718 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7748202 Reviewed-by: Mustaq Ahmed <mustaq@chromium.org> Commit-Queue: Gaston Rodriguez <gastonr@microsoft.com> Cr-Commit-Position: refs/heads/main@{#1668792}
chromium-wpt-export-bot
force-pushed
the
chromium-export-cl-7748202
branch
from
July 27, 2026 18:03
1fd9ea2 to
671ac14
Compare
wpt-pr-bot
approved these changes
Jul 27, 2026
wpt-pr-bot
left a comment
Collaborator
There was a problem hiding this comment.
The review process for this patch is being conducted in the Chromium project.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This CL fixes a bug with drag and drop where a drag will not happen if
the
dragstartlistener removes the drag source or generates a layoutshift.
When a drag starts, blink will try hit-testing the drag start location
after the
dragstartevent is fired to determine the dragged elementand create an overlay image for it. If listeners of the
dragstartevent caused a layout shift or removed the element from the document,
then the hit test will fail and the drag operation will be aborted.
This CL reorders the steps in the sequence to create a drag by moving
the hit testing and image overlay generation to before the
dragstartevent is fired in
PopulateDragDataTransfer. With this change, even ifdragstartremoves an element from the document, the user will stillbe presented with the correct drag overlay image.
In addition to the new tests in this CL, these changes were manually
verified in the WPT remove/ and overlay/ drag and drop directories to
confirm correct UA behavior.
Bug: 434130455
Change-Id: I84bab2edb505b113e8a9481109f196d225d77718
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7748202
Reviewed-by: Mustaq Ahmed <mustaq@chromium.org>
Commit-Queue: Gaston Rodriguez <gastonr@microsoft.com>
Cr-Commit-Position: refs/heads/main@{#1668792}