[Webkit-unassigned] [Bug 44980] New: setAttribute() followed by getAttribute() on select.size does not return the same thing

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 31 13:40:23 PDT 2010


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

           Summary: setAttribute() followed by getAttribute() on
                    select.size does not return the same thing
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: UNCONFIRMED
          Severity: Minor
          Priority: P2
         Component: HTML DOM
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: Simetrical+webkit at gmail.com


Test case:

<!doctype html>
<script>
    var el = document.createElement("select");
    el.setAttribute("size", "-2147483649");
    alert(el.getAttribute("size"));
</script>

Safari 5 on XP and Chrome dev on Ubuntu both alert "0".  Firefox nightly, IE8, and Opera 10.60 all alert "foo".  The WebKit behavior is not expected.

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