From 5909fe92c194ee8f34a79ab8cc5e43b2b3f5e464 Mon Sep 17 00:00:00 2001 From: Dominique Hazael-Massieux Date: Tue, 11 Oct 2022 04:39:11 +0200 Subject: [PATCH] Tweak event index entries for pointercancel and drag events The pointercancel event actually uses the PointerEvent interface, not Event, and it can also fire at Text nodes. Similarly, the dragstart, drag, and dragend events may also fire at Text nodes. --- source | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source b/source index 6bad8a47add..931744b2247 100644 --- a/source +++ b/source @@ -80752,7 +80752,7 @@ dictionary DragEventInit : MouseEventInit { - dragstart + dragstart Source node ✓ Cancelable Read/write mode @@ -80761,7 +80761,7 @@ dictionary DragEventInit : MouseEventInit { - drag + drag Source node ✓ Cancelable Protected mode @@ -80806,7 +80806,7 @@ dictionary DragEventInit : MouseEventInit { - dragend + dragend Source nodeProtected mode @@ -127901,8 +127901,8 @@ INSERT INTERFACES HERE pointercancel - Event - Elements + PointerEvent + Elements and Text nodes Fired at the source node when the user attempts to initiate a drag-and-drop operation.