summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/intersection-observer/resources/nested-cross-origin-child-iframe.sub.html
blob: 78f3d2ca26c41ad7dcbb039e869edf0378c55bd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<script src="/common/get-host-info.sub.js"></script>
<script src="/css/cssom-view/support/scroll-behavior.js"></script>
<style>
.spacer {
  height: calc(100vh + 100px);
}
</style>
<div class="spacer"></div>
<iframe id="iframe"></iframe>
<script>
iframe.src =      // secure port
  get_host_info().HTTPS_NOTSAMESITE_ORIGIN + "/intersection-observer/resources/nested-cross-origin-grand-child-iframe.html";

window.addEventListener("message", async event => {
  if (event.data == "scroll") {
    iframe.scrollIntoView({ behavior: "instant" });
    await waitForScrollEnd(document.scrollingElement);
    window.parent.postMessage("scrollEnd", "*");
  }
});
</script>