[Webkit-unassigned] [Bug 76801] Listboxes incorrectly display contents when cleared and then re-populated

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jan 26 13:56:43 PST 2012


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





--- Comment #10 from Joe Thomas <joethomas at motorola.com>  2012-01-26 13:56:43 PST ---
I tried eventSender to send the mouse events. I could not get the scrolling working with it, but just the listbox is getting focused.

function test()
{
    var index;
    populate();
    var element = document.getElementById("myList");
    var bottomX = element.offsetLeft + element.offsetWidth;
    var bottomY = element.offsetTop + element.offsetHeight;
    eventSender.mouseMoveTo(bottomX - 5, bottomY - 5);
    for(index = 0; index < 50; index++) {
       eventSender.mouseDown();
       eventSender.mouseUp();
    } 
}

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