summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/requestidlecallback/callback-iframe.html
blob: 8ec08a804a6d3b2dfb1b4d6ba1dfcb70ee188944 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<meta charset=utf-8>
<title></title>
<meta name="timeout" content="long">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id="log"></div>
<iframe style="display:none" id="frame"></iframe>
<script>
  async_test(function (t) {
    let frame = document.getElementById("frame");
    frame.contentWindow.test = function() {
      frame.contentWindow.requestIdleCallback(t.step_func_done());
    }

    frame.contentWindow.test();
  });
</script>