[Webkit-unassigned] [Bug 69907] New: Implement an OverflowEvent constructor for JSC

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Oct 12 00:01:58 PDT 2011


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

           Summary: Implement an OverflowEvent constructor for JSC
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: HTML DOM
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: haraken at chromium.org
                CC: ap at webkit.org, sam at webkit.org, abarth at webkit.org,
                    dominicc at chromium.org


We have been implementing constructors of Events. OverflowEvent should have a constructor. 

There is no spec for the OverflowEvent constructor, since it is WebKit-specific. Judging from the current IDL of initOverflowEvent(), the IDL of the OveflowEvent constructor should be as follows.

[Constructor(DOMString type, optional OverflowEventInit eventInitDict)]
interface OverflowEvent : Event {
    ...;
}

dictionary OverflowEventInit : EventInit {
    unsigned short orient;
    boolean horizontalOverflow;
    boolean verticalOverflow;
}

-- 
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