[webkit-changes] [WebKit/WebKit] 4c6e7a: Adopt more eventSender async mouse functions in fa...
Charlie Wolfe
noreply at github.com
Tue Oct 22 11:53:59 PDT 2024
Branch: refs/heads/main
Home: https://github.com/WebKit/WebKit
Commit: 4c6e7afa6c38dc135b41123ecd565edd94869315
https://github.com/WebKit/WebKit/commit/4c6e7afa6c38dc135b41123ecd565edd94869315
Author: Charlie Wolfe <charliew at apple.com>
Date: 2024-10-22 (Tue, 22 Oct 2024)
Changed paths:
M LayoutTests/fast/events/anchor-image-scrolled-x-y.html
M LayoutTests/fast/events/attribute-listener-deletion-crash.html
M LayoutTests/fast/events/autoscroll-in-overflow-hidden-html.html
M LayoutTests/fast/events/autoscroll-in-textarea.html
M LayoutTests/fast/events/autoscroll-in-textfield.html
M LayoutTests/fast/events/autoscroll-main-document.html
M LayoutTests/fast/events/autoscroll-nonscrollable-iframe-in-scrollable-div.html
M LayoutTests/fast/events/autoscroll-overflow-hidden-longhands.html
M LayoutTests/fast/events/autoscroll-should-not-stop-on-keypress.html
M LayoutTests/fast/events/autoscroll-upwards-propagation.html
M LayoutTests/fast/events/autoscroll-when-zoomed.html
M LayoutTests/fast/events/autoscroll-with-non-scrollable-parent.html
M LayoutTests/fast/events/before-input-events-prevent-drag-and-drop.html
M LayoutTests/fast/events/bogus-dropEffect-effectAllowed.html
M LayoutTests/fast/events/cancel-mousedown-and-drag-from-frame-to-other-frame.html
M LayoutTests/fast/events/cancel-mousedown-and-drag-to-frame.html
M LayoutTests/fast/events/capture-on-target.html
M LayoutTests/fast/events/check-defocus-event-order-when-triggered-by-mouse-click.html
M LayoutTests/fast/events/clear-drag-state.html
M LayoutTests/fast/events/clear-edit-drag-state.html
M LayoutTests/fast/events/click-after-mousedown-cancel.html
M LayoutTests/fast/events/click-count.html
M LayoutTests/fast/events/click-focus-anchor.html
M LayoutTests/fast/events/click-focus-control.html
M LayoutTests/fast/events/click-range-slider.html
M LayoutTests/fast/events/clientXY-in-zoom-and-scroll-expected.txt
M LayoutTests/fast/events/clientXY-in-zoom-and-scroll.html
M LayoutTests/fast/events/content-changed-during-drop-expected.txt
M LayoutTests/fast/events/content-changed-during-drop.html
M LayoutTests/fast/events/context-activated-by-key-event.html
M LayoutTests/fast/events/context-no-deselect.html
M LayoutTests/fast/events/context-onmousedown-event.html
M LayoutTests/fast/events/contextmenu-actions-in-selected-text-expected.html
M LayoutTests/fast/events/contextmenu-actions-in-selected-text.html
M LayoutTests/fast/events/contextmenu-dismiss-blink-caret.html
M LayoutTests/fast/events/contextmenu-lookup-action-for-image.html
M LayoutTests/fast/events/contextmenu-on-scrollbars.html
M LayoutTests/fast/events/contextmenu-scrolled-page-with-frame.html
M LayoutTests/fast/events/controlclick-no-onclick.html
M LayoutTests/fast/events/crash-on-mutate-during-drop.html
M LayoutTests/fast/events/data-transfer-files-attribute-identity-expected.txt
M LayoutTests/fast/events/data-transfer-files-attribute-identity.html
M LayoutTests/fast/events/dblclick-addEventListener.html
M LayoutTests/fast/events/dblclick-event-getModifierState.html
M LayoutTests/fast/events/display-none-on-focus-crash.html
M LayoutTests/fast/events/domactivate-sets-underlying-click-event-as-handled.html
M LayoutTests/fast/events/dont-loose-last-event.html
M LayoutTests/fast/events/drag-and-drop-autoscroll-inner-frame.html
M LayoutTests/fast/events/drag-and-drop-autoscroll.html
M LayoutTests/fast/events/dragging-mouse-moves.html
M LayoutTests/fast/events/fire-mousedown-while-pressing-mouse-button.html
M LayoutTests/fast/events/frame-click-focus.html
M LayoutTests/fast/events/frame-detached-in-mousedown.html
M LayoutTests/fast/events/frame-scroll-fake-mouse-move.html
M LayoutTests/fast/events/ghostly-mousemoves-in-subframe.html
M LayoutTests/fast/events/hittest-pointer-event-none-descendants.html
M LayoutTests/fast/events/iframe-onmousemove.html
M LayoutTests/fast/events/mouse-click-different-mouseDown-mouseUp-nodes.html
M LayoutTests/fast/events/mouse-click-events-expected.txt
M LayoutTests/fast/events/mouse-click-events.html
M LayoutTests/fast/events/mouse-cursor-change.html
M LayoutTests/fast/events/mouse-cursor-image-set.html
M LayoutTests/fast/events/mouse-cursor-multiframecur.html
M LayoutTests/fast/events/mouse-cursor-no-mousemove.html
M LayoutTests/fast/events/mouse-cursor-udpate-during-raf.html
M LayoutTests/fast/events/mouse-cursor.html
M LayoutTests/platform/glib/fast/events/clientXY-in-zoom-and-scroll-expected.txt
M LayoutTests/platform/mac/fast/events/clientXY-in-zoom-and-scroll-expected.txt
Log Message:
-----------
Adopt more eventSender async mouse functions in fast/events/
https://bugs.webkit.org/show_bug.cgi?id=281891
rdar://138366238
Reviewed by Alex Christensen.
This is needed for these tests to work correctly when using --site-isolation
* LayoutTests/fast/events/anchor-image-scrolled-x-y.html:
* LayoutTests/fast/events/attribute-listener-deletion-crash.html:
* LayoutTests/fast/events/autoscroll-in-overflow-hidden-html.html:
* LayoutTests/fast/events/autoscroll-in-textarea.html:
* LayoutTests/fast/events/autoscroll-in-textfield.html:
* LayoutTests/fast/events/autoscroll-main-document.html:
* LayoutTests/fast/events/autoscroll-nonscrollable-iframe-in-scrollable-div.html:
* LayoutTests/fast/events/autoscroll-overflow-hidden-longhands.html:
* LayoutTests/fast/events/autoscroll-should-not-stop-on-keypress.html:
* LayoutTests/fast/events/autoscroll-upwards-propagation.html:
* LayoutTests/fast/events/autoscroll-when-zoomed.html:
* LayoutTests/fast/events/autoscroll-with-non-scrollable-parent.html:
* LayoutTests/fast/events/before-input-events-prevent-drag-and-drop.html:
* LayoutTests/fast/events/bogus-dropEffect-effectAllowed.html:
* LayoutTests/fast/events/cancel-mousedown-and-drag-from-frame-to-other-frame.html:
* LayoutTests/fast/events/cancel-mousedown-and-drag-to-frame.html:
* LayoutTests/fast/events/capture-on-target.html:
* LayoutTests/fast/events/check-defocus-event-order-when-triggered-by-mouse-click.html:
* LayoutTests/fast/events/clear-drag-state.html:
* LayoutTests/fast/events/clear-edit-drag-state.html:
* LayoutTests/fast/events/click-after-mousedown-cancel.html:
* LayoutTests/fast/events/click-count.html:
* LayoutTests/fast/events/click-focus-anchor.html:
* LayoutTests/fast/events/click-focus-control.html:
* LayoutTests/fast/events/click-range-slider.html:
* LayoutTests/fast/events/clientXY-in-zoom-and-scroll-expected.txt:
* LayoutTests/fast/events/clientXY-in-zoom-and-scroll.html:
* LayoutTests/fast/events/content-changed-during-drop-expected.txt:
* LayoutTests/fast/events/content-changed-during-drop.html:
* LayoutTests/fast/events/context-activated-by-key-event.html:
* LayoutTests/fast/events/context-no-deselect.html:
* LayoutTests/fast/events/context-onmousedown-event.html:
* LayoutTests/fast/events/contextmenu-actions-in-selected-text-expected.html:
* LayoutTests/fast/events/contextmenu-actions-in-selected-text.html:
* LayoutTests/fast/events/contextmenu-dismiss-blink-caret.html:
* LayoutTests/fast/events/contextmenu-lookup-action-for-image.html:
* LayoutTests/fast/events/contextmenu-on-scrollbars.html:
* LayoutTests/fast/events/contextmenu-scrolled-page-with-frame.html:
* LayoutTests/fast/events/controlclick-no-onclick.html:
* LayoutTests/fast/events/crash-on-mutate-during-drop.html:
* LayoutTests/fast/events/data-transfer-files-attribute-identity-expected.txt:
* LayoutTests/fast/events/data-transfer-files-attribute-identity.html:
* LayoutTests/fast/events/dblclick-addEventListener.html:
* LayoutTests/fast/events/dblclick-event-getModifierState.html:
* LayoutTests/fast/events/display-none-on-focus-crash.html:
* LayoutTests/fast/events/domactivate-sets-underlying-click-event-as-handled.html:
* LayoutTests/fast/events/dont-loose-last-event.html:
* LayoutTests/fast/events/drag-and-drop-autoscroll-inner-frame.html:
* LayoutTests/fast/events/drag-and-drop-autoscroll.html:
* LayoutTests/fast/events/dragging-mouse-moves.html:
* LayoutTests/fast/events/fire-mousedown-while-pressing-mouse-button.html:
* LayoutTests/fast/events/frame-click-focus.html:
* LayoutTests/fast/events/frame-detached-in-mousedown.html:
* LayoutTests/fast/events/frame-scroll-fake-mouse-move.html:
* LayoutTests/fast/events/ghostly-mousemoves-in-subframe.html:
* LayoutTests/fast/events/hittest-pointer-event-none-descendants.html:
* LayoutTests/fast/events/iframe-onmousemove.html:
* LayoutTests/fast/events/mouse-click-different-mouseDown-mouseUp-nodes.html:
* LayoutTests/fast/events/mouse-click-events-expected.txt:
* LayoutTests/fast/events/mouse-click-events.html:
* LayoutTests/fast/events/mouse-cursor-change.html:
* LayoutTests/fast/events/mouse-cursor-image-set.html:
* LayoutTests/fast/events/mouse-cursor-multiframecur.html:
* LayoutTests/fast/events/mouse-cursor-no-mousemove.html:
* LayoutTests/fast/events/mouse-cursor-udpate-during-raf.html:
* LayoutTests/fast/events/mouse-cursor.html:
* LayoutTests/platform/glib/fast/events/clientXY-in-zoom-and-scroll-expected.txt:
* LayoutTests/platform/mac/fast/events/clientXY-in-zoom-and-scroll-expected.txt:
Canonical link: https://commits.webkit.org/285564@main
To unsubscribe from these emails, change your notification settings at https://github.com/WebKit/WebKit/settings/notifications
More information about the webkit-changes
mailing list