summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/lifecycle/child-out-of-viewport.tentative.html
blob: 4d8f868bfb55043b4b65a93cd7f8e282dcf12f79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<meta charset="utf-8">
<title>Child frame marked as frozen</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<div style="width: 200px; height: 4000px"></div>
<script>
async_test((t) => {

  var child = document.createElement('iframe');

  var loaded = false;
  var frozen = false;

  window.addEventListener('message', t.step_func((e) => {
    if (e.data == "load") {
      loaded = true;
    } else if (e.data == "freeze") {
      assert_true(loaded);
      frozen = true;
      child.scrollIntoView();
    } else if (e.data == "resume") {
      assert_true(loaded);
      assert_true(frozen);
      t.done();
    }
  }));

  child.allow = "execution-while-out-of-viewport 'none'";
  child.src = "resources/subframe.html";
  document.body.appendChild(child);
}, "Child frame frozen");

</script>
</body>