[Webkit-unassigned] [Bug 76124] New: WheelEvent.initWebKitWheelEvent differs from DOM Events WheelEvent.initWheelEvent

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jan 11 16:48:23 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=76124

           Summary: WheelEvent.initWebKitWheelEvent differs from DOM
                    Events WheelEvent.initWheelEvent
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Event Handling
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: eric at webkit.org
                CC: abarth at webkit.org, haraken at chromium.org
        Depends on: 76121


WheelEvent.initWebKitWheelEvent differs from DOM Events WheelEvent.initWheelEvent

http://www.w3.org/TR/DOM-Level-3-Events/#webidl-events-WheelEvent

We should come to the future!

This causes http://samples.msdn.microsoft.com/ietestcenter/domevents/WheelEvent.initWheelEvent.html to fail (now that bug 76121 is resolved).

Expected:

  void                               initWheelEvent(in DOMString typeArg, 
                                                    in boolean canBubbleArg, 
                                                    in boolean cancelableArg, 
                                                    in AbstractView viewArg, 
                                                    in long detailArg, 
                                                    in long screenXArg, 
                                                    in long screenYArg, 
                                                    in long clientXArg, 
                                                    in long clientYArg, 
                                                    in unsigned short buttonArg, 
                                                    in EventTarget relatedTargetArg, 
                                                    in DOMString modifiersListArg, 
                                                    in float deltaXArg, 
                                                    in float deltaYArg, 
                                                    in float deltaZArg, 
                                                    in unsigned long deltaMode);

Ours:

        void initWebKitWheelEvent(in [Optional=CallWithDefaultValue] long wheelDeltaX,
                                  in [Optional=CallWithDefaultValue] long wheelDeltaY, 
                                  in [Optional=CallWithDefaultValue] DOMWindow view, 
                                  in [Optional=CallWithDefaultValue] long screenX,
                                  in [Optional=CallWithDefaultValue] long screenY,
                                  in [Optional=CallWithDefaultValue] long clientX,
                                  in [Optional=CallWithDefaultValue] long clientY,
                                  in [Optional=CallWithDefaultValue] boolean ctrlKey,
                                  in [Optional=CallWithDefaultValue] boolean altKey,
                                  in [Optional=CallWithDefaultValue] boolean shiftKey,
                                  in [Optional=CallWithDefaultValue] boolean metaKey);

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list