fix: cleanup iframe first to prevent memory leaks, see #1609

This commit is contained in:
yuyuyzl 2022-09-06 10:36:07 +08:00
parent 485a49e451
commit 96cc89a27d
1 changed files with 5 additions and 5 deletions

View File

@ -480,15 +480,15 @@ export class DocumentCloner {
static destroy(container: HTMLIFrameElement): boolean {
// cleanup iframe first to prevent memory leaks, see #1609
try{
const iframe=container.contentWindow;
container.src='about:blank';
if(iframe) {
try {
const iframe = container.contentWindow;
container.src = 'about:blank';
if (iframe) {
iframe.document.write('');
iframe.document.clear();
iframe.close();
}
}catch {}
} catch {}
if (container.parentNode) {
container.parentNode.removeChild(container);
return true;