diff --git a/sections/event-types.txt b/sections/event-types.txt index b530cf1..d20157b 100644 --- a/sections/event-types.txt +++ b/sections/event-types.txt @@ -2023,6 +2023,21 @@ myDiv.addEventListener("auxclick", function(e) { deltaY value respectively).

+ A user agent SHOULD create a wheel event group when the first wheel event + is fired, so that all subsequent wheel events within a implementation-specific amount of + time can be targetted at the same element. A wheel event group is series of + wheel events that are associated with a single user gesture. The wheel event group + MUST have an associated event target that is the topmost event target at the time + the first wheel event occurs in the group. + +

+ If a series of wheel events targetted in a scrollable element start + above a child element, later events for the same user gesture may + occur over the child element. In the case that {{Event/preventDefault()}} + is called in a wheel event handler for the child element, targetting + the child element could result in unexpected behavior for the user. +

+

Interface WheelEvent

Introduced in this specification

@@ -2184,7 +2199,8 @@ myDiv.addEventListener("auxclick", function(e) { +| Composed | Yes | +| Default action | Scroll (or zoom) the document | +| Context
|