This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 29525 - scroll and resize events lack explicit definitions
Summary: scroll and resize events lack explicit definitions
Status: RESOLVED FIXED
Alias: None
Product: CSS
Classification: Unclassified
Component: CSSOM View (show other bugs)
Version: unspecified
Hardware: All All
: P2 normal
Target Milestone: ---
Assignee: Simon Pieters
QA Contact: public-css-bugzilla
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-03-09 23:04 UTC by Chris Rebert
Modified: 2016-03-11 12:42 UTC (History)
0 users

See Also:


Attachments

Description Chris Rebert 2016-03-09 23:04:45 UTC
These events are currently only referred to in the scrolling and resizing algorithms. They lack explicit definitions.
Explicit definitions would be useful so that other specs (e.g. HTML) could link to them.
Also, such definitions are typically somewhat more detailed; see e.g. https://w3c.github.io/uievents/#event-type-focus
Comment 2 Chris Rebert 2016-03-11 10:29:14 UTC
What about the cancellability and bubble-ness of the events?
Comment 3 Simon Pieters 2016-03-11 12:42:37 UTC
HTML doesn't have that information in its event tables, whether it's cancelable or bubbles depends on where it's fired; it's not an inherent property of the event type. In particular, 'scroll' in CSSOM View both bubbles and doesn't bubble, depending on the target.

I suppose it would be possible to have that information in the tables though; let me know what you think.