Hi,
Our application integrates a whole lot of external resources (content from different domains). We have applications windows that display content from these sites in HTMLPanes in a tabbed format:
I notice that for some sites, after the window/tabbed pane displaying it is closed, it will leave a element on the UI, like an image or background. This masks content on the page.
Have you come across similar issues like this and is there something that can be done to prevent this? reg: Content displayed in iframes in child windows should not linger on after the window is closed.
Thanks.
Our application integrates a whole lot of external resources (content from different domains). We have applications windows that display content from these sites in HTMLPanes in a tabbed format:
Code:
String contents = "<iframe name='"+id+"' id='"+id+"' width='100%' height='100%' src='"+sUrl+"'></iframe>"; bWidget.getTabPane().setContents(contents);
Have you come across similar issues like this and is there something that can be done to prevent this? reg: Content displayed in iframes in child windows should not linger on after the window is closed.
Thanks.
Comment