[Webkit-unassigned] [Bug 14573] New: NodeList not exposed ?

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jul 10 07:48:57 PDT 2007


http://bugs.webkit.org/show_bug.cgi?id=14573

           Summary: NodeList not exposed ?
           Product: WebKit
           Version: 522+ (nightly)
          Platform: Macintosh
        OS/Version: Mac OS X 10.4
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: HTML DOM
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: hartman at videolan.org


function getChecked( nodelist ) {
        if( !( nodelist instanceof NodeList ) ) {
                throw nodelist + " not instance of NodeList";
        }
        var result = [];
        for(var i=0; i<nodelist.length; i++ ) {
                if( nodelist[i].checked ) {
                        result.push( nodelist[i].value );
                }
        }
        return result;
}


//Can't find variable: NodeList
//http://en.wikipedia.org/w/index.php?title=User%3AAzaToth%2Ftwinklearv.js&action=raw&ctype=text/javascript

Line 40 == if( !( nodelist instanceof NodeList ) ) {
On Safari 3.0.2
Issue confirmed by bdash


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list