Side navigation
#8566 closed bug (duplicate)
Opened March 18, 2011 11:18PM UTC
Closed March 20, 2011 10:08PM UTC
Last modified March 14, 2012 07:02PM UTC
Possible Memory Leak in IE8 when loading jquery inside iframe
Reported by: | jkang@udcnet.com | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.next |
Component: | unfiled | Version: | 1.5.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I have included jquery 1.5.1 inside an iframe.
The parent does a reload on this iframe and it causes ie8 memory to grow every time.
testmain.html :
<iframe id='ifrm' src='http://localhost:8080/acrm/test_iframe.html'></iframe> <input type='button' value='RELOAD IFRAME' onclick='document.getElementById("ifrm").contentDocument.location.reload(true);'/>
test_iframe.html :
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <script type='text/javascript' src="jscript/jquery-1.5.1.min.js"></script> </head> <body><div>This is the iframe</div></body> </html>