https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e1321f59e821319d86425ee9027458ff9db35b05 authored by Jaewon Choi on 22 October 2018, 16:31:16 UTC
Add SameObject attribute to navigator xr with wpt
Tip revision: e1321f5
initial-observation-with-threshold.html
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="./resources/intersection-observer-test-utils.js"></script>

<style>
pre, #log {
  position: absolute;
  top: 0;
  left: 200px;
}
.spacer {
  height: calc(100vh + 100px);
}
#root {
  display: inline-block;
  overflow-y: scroll;
  height: 240px;
  border: 3px solid black;
}
#target {
  width: 100px;
  height: 100px;
  margin: 200px 0 0 0;
  background-color: green;
}
</style>

<div id="root">
  <div id="target"></div>
</div>

<script>
var entries = [];
var root, target;

runTestCycle(function() {
  target = document.getElementById("target");
  assert_true(!!target, "target exists");
  root = document.getElementById("root");
  assert_true(!!root, "root exists");
  var observer = new IntersectionObserver(function(changes) {
    entries = entries.concat(changes)
  }, { root: root, threshold: [0.5] });
  observer.observe(target);
  entries = entries.concat(observer.takeRecords());
  assert_equals(entries.length, 0, "No initial notifications.");
  runTestCycle(step0, "First rAF");
}, "First observation with a threshold.");

function step0() {
  root.scrollTop = 20;
  runTestCycle(step1, "root.scrollTop = 20");
  checkLastEntry(entries, 0, [ 11, 111, 211, 311, 11, 111, 211, 251, 11, 111, 11, 251, false]);
}

function step1() {
  checkLastEntry(entries, 1, [ 11, 111, 191, 291, 11, 111, 191, 251, 11, 111, 11, 251, true]);
}
</script>
back to top