[Webkit-unassigned] [Bug 74546] New: HTMLCollection.item should not return elements by ID/name

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Dec 14 15:09:28 PST 2011


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

           Summary: HTMLCollection.item should not return elements by
                    ID/name
           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: Ms2ger at gmail.com
                CC: rniwa at webkit.org


Currently, the implementation of item(unsigned long) looks at the ID/name of elements in the collection if the argument isn't an integer, for some value of integer. [1,2] WebIDL, [3] however, requires that the argument is converted into an integer by ToNumber, which returns NaN for normal strings, and then ToUint32, which is 0. So item("foo") should return the first element in the collection.

[1] <http://www.google.com/codesearch#OAMlx_jo-ck/src/third_party/WebKit/Source/WebCore/bindings/js/JSHTMLCollectionCustom.cpp&exact_package=chromium&q=HTMLCollection&l=74>
[2] <http://software.hixie.ch/utilities/js/live-dom-viewer/saved/1280>
[3] <http://dev.w3.org/2006/webapi/WebIDL/#es-unsigned-long>

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