[jQuery] Memory leak in 1.1.4?

[jQuery] Memory leak in 1.1.4?


Hello! I use utility Drip (http://www.outofhanwell.com/ieleak/
index.php?title=Main_Page) for the control of memory-leak.
The Drip shows memory-leak even in such simple case:
<html>
<head>
<script type="text/javascript" src="jquery-1.1.4.js">
</script>
<script type="text/javascript">
$(document).ready(function() {
$('.hover').click(
function() { $(this).text('clicked'); }
);
});
</script>
</head>
<body>
<div class="hover">click me</div>
</body>
</html>
It is a bug in Drip or in jQuery?
Sorry for my bad English.