[Webkit-unassigned] [Bug 32492] Missing support for document.createEvent("OrientationEvent")

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Apr 8 14:55:39 PDT 2010


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


Joseph Pecoraro <joepeck at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |joepeck at webkit.org




--- Comment #1 from Joseph Pecoraro <joepeck at webkit.org>  2010-04-08 14:55:39 PST ---
Just some background information: Like other events on the window it can be
simulated with createEvent and initEvent:

    var e = document.createEvent("Event");
    e.initEvent('orientationchange', false, false);
    window.dispatchEvent(e);

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