{
const body = iframe2.contentDocument.querySelector('body');
const container = html`<div class="observablehq"></div>`
body.append(container)
const contentRoot = html`<div><div>`
container.append(contentRoot)
disposal(iframe2).then(()=> {
contentRoot.remove()
const document = iframe2.contentDocument;
document &&
document.documentElement &&
document.documentElement.remove();
})
addDivAndInvalidation(contentRoot, 'iframe');
}