blob: 8683a38326d96f5e180d3a2042aba652b8c0fa03 [file] [log] [blame]
<!DOCTYPE html>
<html class="reftest-wait">
<title>Portals rendering test</title>
<link rel="match" href="references/portals-rendering.html">
<body>
<portal src="resources/portals-rendering-portal.html" style="background-color: red; width: 100px; height: 100px"></portal>
<script>
var bc = new BroadcastChannel('portal');
bc.onmessage = function(e) {
window.requestAnimationFrame(function(ts) {
document.documentElement.classList.remove('reftest-wait');
});
bc.close();
}
</script>
</body>