summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-scroller-nested-4.html
blob: e15d891fb5b5d86bc787e84838b31f9a61f3f948 (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
50
51
52
53
54
55
56
57
58
<!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;
  }

  #scroller2 {
    width: 110px;
    height: 110px;
    overflow: scroll;
  }

  .spacer {
    width: 130px;
    height: 130px;
  }

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

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

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

  function iframe_onload() {
    t.done();
  }

  t.step_timeout(() => {
    t.unreached_func(
      "Timed out while waiting for iframe to load."
    )();
  }, 2000);
</script>