#1376 closed defect (fixed)
[patch][cla] Webkit treats NodeLists as functions
Reported by: | Owned by: | dylan | |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Core | Version: | 0.3 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Webkit treats a NodeList? as a function. This breaks dojo.lang.isFunction(), and any method which depends on the NodeList? not being a function (like dojo.lang.isArrayLike and subsequently dojo.lang.find). See also http://bugzilla.opendarwin.org/show_bug.cgi?id=10647
A solution is to check if object.toString() contains NodeList? in isFunction().
Change History (6)
comment:1 Changed 14 years ago by
Owner: | changed from anonymous to dylan |
---|---|
Status: | new → assigned |
Summary: | Webkit treats NodeLists as functions → [patch][cla] Webkit treats NodeLists as functions |
comment:2 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:3 Changed 14 years ago by
Resolution: | fixed |
---|---|
Status: | closed → reopened |
fix breaks things, reopening
comment:5 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
Note: See
TracTickets for help on using
tickets.
(In [5567]) fixes #1376, Safari treats NodeList? as a function, which is bad