In Scrolling, the algorithm for "Whenever an element gets scrolled (whether in response to user interaction or by an API)" has:
- If the element is already in doc’s pending scroll events, abort these steps.
- Append the element to doc’s pending scroll events.
But the pending scroll events list stores pairs of (EventTarget, DOMString), not only an event target. What type of event should be added to the list along with the element?