aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/portals/portals-rendering.html
blob: 8683a38326d96f5e180d3a2042aba652b8c0fa03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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>