aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/WheelEvent.webidl
Commit message (Collapse)AuthorAgeFilesLines
* script: Move code generation and webidl files to new script_bindings crate. ↵Josh Matthews2025-01-241-33/+0
| | | | | (#35157) Signed-off-by: Josh Matthews <josh@joshmatthews.net>
* Convert Web IDL void to undefinedKagami Sascha Rosylight2022-01-051-1/+1
| | | | Fixes #27660
* Migrate to new constructor operation syntaxKagami Sascha Rosylight2019-10-021-2/+2
|
* Require default dictionary value for optional dictsKagami Sascha Rosylight2019-07-121-1/+1
|
* Implement WheelEvent InterfaceRobert Snakard2019-06-091-0/+33
Note: The WheelEvent interface supports rotation in all 3 spatial dimensions. This implementation only supports two due to limitations in the Glutin compositor. The wheelevent interface is a dom interface that triggers for any attached device that can rotate in one or more spatial dimensions. Traditionally this is the mouse wheel though other devices could be used as well. E.g. the trackball on a trackball mouse.