[Bug 18542] onmousewheel attribute should be replaced with onwheel

https://www.w3.org/Bugs/Public/show_bug.cgi?id=18542

--- Comment #22 from Travis Leithead [MSFT] <travil@microsoft.com> ---
(In reply to Philippe Le Hegaret from comment #21)
> https://github.com/w3c/spork/pull/13

Note that Chrome and Edge both added some of the mousewheel's properties onto
the Wheel event interface for compat...

    [Constructor(DOMString typeArg, optional WheelEventInit eventInitDict)]
    interface WheelEvent : MouseEvent
    {
        // DeltaModeCode
        const unsigned long DOM_DELTA_PIXEL = 0x00;
        const unsigned long DOM_DELTA_LINE = 0x01;
        const unsigned long DOM_DELTA_PAGE = 0x02;

        // From Legacy MouseWheel...
        readonly attribute long wheelDelta;
        readonly attribute long wheelDeltaX;
        readonly attribute long wheelDeltaY;

        readonly attribute long deltaX;
        readonly attribute long deltaY;
        readonly attribute long deltaZ;
        readonly attribute unsigned long deltaMode;

    };

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Wednesday, 8 July 2015 17:53:53 UTC