Side navigation
#8528 closed bug (invalid)
Opened March 15, 2011 01:56AM UTC
Closed March 15, 2011 04:25AM UTC
Last modified March 14, 2012 07:12PM UTC
IE9 throws "Access denied" when deleting an iframe that had previously made $.ajax calls
Reported by: | ben@benv.ca | Owned by: | danheberden |
---|---|---|---|
Priority: | high | Milestone: | 1.5.2 |
Component: | event | Version: | 1.5.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Situation:
You have a page that includes an iframe. That iframe makes $.ajax calls, and then is removed from the page from the parent. IE9 will throw the following error:
SCRIPT5: Access is denied.
I've debugged this a bit, and it's caused by the window unload event bound by xhrOnUnloadAbort(). When the iframe is removed from the page, the unload event is triggered, but IE9 passes an event object with "Access denied" for nearly every property, and jQuery chokes when it encounters it.
Even though this is an "Access denied" error, it doesn't seem to matter whether the iframe is hosted on another domain or not.
Host page:
<!DOCTYPE html> <body> <iframe src="http://localdev.com/~ben/disqus/ie9_frame.html"></iframe> <a href="#">Delete me</a> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script> <script type="text/javascript"> $(function() { $('a').click(function() { $('iframe').remove(); }); }); </script> </body> </html>
Iframe src:
<!DOCTYPE html> <body> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script> <script> $(function() { $.get('/~ben/disqus/ie9.json', function() { $('body').append("ajax call done"); }); }); </script> </body> </html>
Attachments (0)
Change History (5)
Changed March 15, 2011 02:10AM UTC by comment:1
component: | unfiled → ajax |
---|---|
keywords: | → needsreview |
priority: | undecided → high |
status: | new → open |
Changed March 15, 2011 02:17AM UTC by comment:2
component: | ajax → event |
---|
Changed March 15, 2011 04:21AM UTC by comment:3
milestone: | 1.next → 1.5.2 |
---|---|
owner: | → danheberden |
status: | open → assigned |
Changed March 15, 2011 04:25AM UTC by comment:4
resolution: | → invalid |
---|---|
status: | assigned → closed |
no longer present in ie9 final. fwiw, i fixed it :/ but no need now
Changed March 15, 2011 07:20AM UTC by comment:5
keywords: | needsreview |
---|
http://jsfiddle.net/danheberden/qHmXe/4/show/
http://danheberden.com/share/3fc60.png