Skip to content

Commit

Permalink
Tweak event index entries for pointercancel and drag events
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dontcallmedom authored Oct 11, 2022
1 parent 30c2607 commit 5909fe9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -80752,7 +80752,7 @@ dictionary <dfn dictionary>DragEventInit</dfn> : <span>MouseEventInit</span> {
<tbody>

<tr>
<td><dfn event for="GlobalEventHandlers"><code data-x="event-dnd-dragstart">dragstart</code></dfn></td>
<td><dfn event for="GlobalEventHandlers,Text"><code data-x="event-dnd-dragstart">dragstart</code></dfn></td>
<td><span>Source node</span></td>
<td>&#x2713; Cancelable</td>
<td><span data-x="concept-dnd-rw">Read/write mode</span>
Expand All @@ -80761,7 +80761,7 @@ dictionary <dfn dictionary>DragEventInit</dfn> : <span>MouseEventInit</span> {
</tr>

<tr>
<td><dfn event for="GlobalEventHandlers"><code data-x="event-dnd-drag">drag</code></dfn></td>
<td><dfn event for="GlobalEventHandlers,Text"><code data-x="event-dnd-drag">drag</code></dfn></td>
<td><span>Source node</span></td>
<td>&#x2713; Cancelable</td>
<td><span data-x="concept-dnd-p">Protected mode</span>
Expand Down Expand Up @@ -80806,7 +80806,7 @@ dictionary <dfn dictionary>DragEventInit</dfn> : <span>MouseEventInit</span> {
</tr>

<tr>
<td><dfn event for="GlobalEventHandlers"><code data-x="event-dnd-dragend">dragend</code></dfn></td>
<td><dfn event for="GlobalEventHandlers,Text"><code data-x="event-dnd-dragend">dragend</code></dfn></td>
<td><span>Source node</span></td>
<td>&mdash;</td>
<td><span data-x="concept-dnd-p">Protected mode</span>
Expand Down Expand Up @@ -127901,8 +127901,8 @@ INSERT INTERFACES HERE

<tr> <!-- pointercancel -->
<td> <span><code data-x="event-pointercancel">pointercancel</code></span>
<td> <code>Event</code>
<td> Elements
<td> <code>PointerEvent</code>
<td> Elements and <code>Text</code> nodes
<td> Fired at the <span>source node</span> when the user attempts to initiate a drag-and-drop operation.

<tr> <!-- popstate -->
Expand Down

0 comments on commit 5909fe9

Please sign in to comment.