[Webkit-unassigned] [Bug 143739] Layout Test fast/forms/listbox-visible-size.html is failing

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Apr 22 02:58:27 PDT 2015


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

--- Comment #3 from Marcos Chavarría Teijeiro (chavaone) <chavarria1991 at gmail.com> ---
The reason is that WebKit (at least WebKitGtk) only renders complete rows so if you want to scroll to the middle of two rows it move to the next position. 

In addition the JS code from this test is wrong IMHO:

    const targetTop = 28;
    var select;
    function scrollSelect(newTop)
    {
        var select = document.getElementById('select');
        select.scrollTop = newTop;
    }

    scrollSelect(targetTop);
    shouldBe('select.scrollTop', 'targetTop');

The select that is declared on line 2 should be undefined on the last line (but it isn't) the select on line 5 is a local variable of scrollSelect function and it should not affect to the extern value (but it does). This is the behaviour of Firefox and Chrome.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20150422/766ba24e/attachment-0001.html>


More information about the webkit-unassigned mailing list