Opened 14 years ago
Closed 14 years ago
#2691 closed defect (fixed)
a11y.js leaks in IE
Reported by: | Michael Schall | Owned by: | Becky Gibson |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Accessibility | Version: | 0.4.2 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Any call to a dom node's removeChild will leak in IE. In a11y.js leaks on the line:
dojo.body().removeChild(div);
It needs to be
dojo.html.destroyNode(div);
Attachments (1)
Change History (3)
Changed 14 years ago by
Attachment: | a11y.patch added |
---|
comment:1 Changed 14 years ago by
Note: See
TracTickets for help on using
tickets.
patch for leak