summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/intersection-observer/resources/timestamp-subframe.html
blob: 143e4f6e23a7688949420a07ccd20e3c211a6f6b (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
<!DOCTYPE html>
<style>
#target {
  width: 100px;
  height: 100px;
  background-color: green;
}
.spacer {
  width: height: 100px
}
</style>

<div class="spacer"></div>
<div id="target"></div>
<div class="spacer"></div>

<script>
document.createObserverCallback = function(entries) {
  return function(newEntries) {
    for (var i in newEntries) {
      entries.push(newEntries[i]);
    }
  };
}
document.createObserver = function(callback) {
  return new IntersectionObserver(callback, {});
};
</script>