jQuery: The Write Less, Do More JavaScript Library

Ticket #2123 (closed bug: fixed)

Opened 4 months ago

Last modified 3 months ago

IE6 memory leak with custom / pseudo events

Reported by: the_undefined Assigned to: anonymous
Type: bug Priority: minor
Milestone: 1.2.2 Component: event
Version: 1.2.1 Keywords:
Cc: haimuiba@gmail.com Needs: Review

Description

Hi folks,

first of all thanks for all the good things that went into 1.2.2b so far, it fixes some real nasty memory leaks present in 1.2.1 related to events.

However, there still seems to be something weird going on with custom (i.e. non standard) events. Consider the following example:

$(function() {
	$('h1:first').bind('pseudoEvent', function() {});
});

If you keep refreshing a page with an h1 element and this code, you'll see memory going through the roof in IE6. (I highly recommend Drip's auto-refresh function for testing this).

Now even more disturbing is the fact that if I directly unbind the event like this:

$(function() {
	$('h1:first').bind('pseudoEvent', function() {});
	$('h1:first').unbind('pseudoEvent');
});

The memory leak still occurs.

If using custom events like this is not considered to be a good practice please let me know so I can refactor my code ; ).

Thanks, Felix

Attachments

Change History

Changed 4 months ago by davidserduke

  • status changed from new to closed
  • resolution set to fixed

This should be fixed already in 1.2.2b2.

http://groups.google.com/group/jquery-dev/browse_thread/thread/498e1bdaa4017b1b/63c0b10a1a5b5281

If you could re-run your tests with b2 and reopen the bug if you still have a problem we'd appreciate it. Memory leaks are always tricky.

In case you were wondering what the problem was, it appears IE6 is fine with attaching a pseudo event to an element, but fails when it tries to detach it. This leaves the event handler on the element and causes the memory leak since the garbage collection can't handle it correctly.

Changed 4 months ago by davidserduke

Also if you are interested, the memory leak is discussed in the comments of this ticket

http://dev.jquery.com/ticket/2071

Changed 4 months ago by the_undefined

  • status changed from closed to reopened
  • resolution deleted

This should be fixed already in 1.2.2b2.

My bad, I was actually testing this in 1.2.2b2 (r4269) not '1.2.2b'. So if you get a chance try to see if you can replicate this issue with the code given above.

For your convenience you can use this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" dir="ltr" id="html" lang="en"><head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>Memory Leak</title>
	<script type="text/javascript" src="js/jquery.js"></script>
	<script type="text/javascript">
$(function() {
	$('h1:first').bind('pseudoEvent', function() {});
	$('h1:first').unbind('pseudoEvent');
});
	</script>
</head>
<body id="body">
	<h1>Test element</h1>
</body></html>

Btw. is there any reason trac wouldn't email me about changes on this ticket? Maybe SMTP not setup or sth?

Changed 3 months ago by brandon

  • status changed from reopened to closed
  • resolution set to fixed

This was fixed in 1.2.2 final. Email updates aren't enabled.

Note: See TracTickets for help on using tickets.