| <meta name="viewport" content="width=device-width,initial-scale=1"> |
| <script src="/resources/testharness.js"></script> |
| <script src="/resources/testharnessreport.js"></script> |
| <script src="./resources/intersection-observer-test-utils.js"></script> |
| height: calc(100vh + 100px); |
| <div class="spacer"></div> |
| <div class="spacer"></div> |
| runTestCycle(function() { |
| var target = document.getElementById("target"); |
| assert_true(!!target, "Target exists"); |
| function createObserver() { |
| new IntersectionObserver(function(changes) { |
| entries = entries.concat(changes) |
| runTestCycle(step0, "First rAF"); |
| }, "IntersectionObserver that is unreachable in js should still generate notifications."); |
| document.scrollingElement.scrollTop = 300; |
| runTestCycle(step1, "document.scrollingElement.scrollTop = 300"); |
| assert_equals(entries.length, 1, "One notification."); |
| document.scrollingElement.scrollTop = 0; |
| assert_equals(entries.length, 2, "Two notifications."); |