summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-scroller-far.html
blob: eeb05b7b98ec1bf96a2912f8b174edc0dad53cb9 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<link rel="help" href="https://html.spec.whatwg.org/#lazy-load-root-margin">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<style>
  #scroller {
    width: 100px;
    height: 100px;
    overflow: scroll;
    background-color: gray;
  }

  #spacer {
    width: 130px;
    height: 10000vh;
  }

  #target {
    width: 100px;
    height: 100px;
  }
</style>

<div id="scroller">
  <div id="spacer"></div>
  <iframe
    id="target"
    src="resources/subframe.html"
    loading="lazy"
    onload="iframe_onload();"
  ></iframe>
</div>

<script>
  const t = async_test(
    "Test that lazy-loaded iframes do not load when far from viewport."
  );

  function iframe_onload() {
    t.unreached_func(
      "Lazy-loading iframe far from viewport should not load."
    )();
  }

  t.step_timeout(() => {
    t.done();
  }, 2000);
</script>