iframe3 = {
mutable calls3 = [];
return new Promise(resolve => {
const iframe = html`<iframe srcdoc="<html><p>OK!</p></html>">`;
document.body.appendChild(iframe);
iframe.onload = () => {
mutable calls3 = [
...mutable calls3,
iframe.contentWindow.document.location.href
];
document.body.removeChild(iframe);
resolve(iframe);
};
});
}