Opened 12 years ago
Closed 11 years ago
#11526 closed defect (fixed)
[patch] [ccla] DataPresentation broken in Chrome 5
Reported by: | haysmark | Owned by: | dante |
---|---|---|---|
Priority: | high | Milestone: | 1.6 |
Component: | DojoX Widgets | Version: | 1.5 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
See:
http://archive.dojotoolkit.org/nightly/checkout/dojox/widget/tests/test_DataPresentation.html
It doesn't load at all. This issue is related to a known Chrome bug:
http://code.google.com/p/chromium/issues/detail?id=40931
The fix is to not use for-in loops on regular expression results.
Attachments (1)
Change History (5)
Changed 12 years ago by
Attachment: | 11526.patch added |
---|
comment:2 Changed 12 years ago by
I'm going to be pedantic and suggest the following to avoid a lookup each time through the loop:
for(var frag=0, len=fragments.length; frag<len; frag++){
comment:3 Changed 11 years ago by
Milestone: | tbd → 1.6 |
---|---|
Status: | new → assigned |
comment:4 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
Fixes #11526. Chrome 5 has issues with for-in loops on regular expression matches.