layout default title Testbeds <script> function setDocHeight(ctx) { doc = ctx.contentDocument || document; var body = doc.body, html = doc.documentElement; var height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight ); ctx.style.height = height + 'px'; setTimeout(()=>{ doc = ctx.contentDocument || document; var body = doc.body, html = doc.documentElement; var height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight ); ctx.style.height = height + 'px'; },100); } </script> <iframe src="testbeds/testbeds.html" style="height:100vh;width: 100%;" onload="setDocHeight(this);" scrolling="no" frameBorder="0"></iframe>