summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/intersection-observer/scroll-margin-nested-2.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/intersection-observer/scroll-margin-nested-2.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/intersection-observer/scroll-margin-nested-2.html')
-rw-r--r--testing/web-platform/tests/intersection-observer/scroll-margin-nested-2.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/testing/web-platform/tests/intersection-observer/scroll-margin-nested-2.html b/testing/web-platform/tests/intersection-observer/scroll-margin-nested-2.html
new file mode 100644
index 0000000000..32cfd1ba93
--- /dev/null
+++ b/testing/web-platform/tests/intersection-observer/scroll-margin-nested-2.html
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<meta name="viewport" content="width=device-width,initial-scale=1">
+<link rel="help" href="https://www.w3.org/TR/intersection-observer/#dom-intersectionobserver-scrollmargin">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="./resources/intersection-observer-test-utils.js"></script>
+
+<style>
+#scroller { width: 100px; height: 100px; overflow: hidden; background-color: gray; }
+#scroller2 { width: 130px; height: 130px; overflow: hidden; }
+#spacer { width: 50px; height: 120px; }
+#target { width: 50px; height: 50px; background-color: green; }
+</style>
+
+<div id=scroller2>
+ <div id=spacer></div>
+ <div id=scroller>
+ <div id=target></div>
+ </div>
+</div>
+
+<script>
+let entries = [];
+
+window.onload = function() {
+ runTestCycle(testIntersection, "Test scroll margin intersection");
+
+ const observer = new IntersectionObserver(
+ es => entries = entries.concat(es),
+ {
+ scrollMargin: "10px"
+ }
+ );
+ observer.observe(target);
+};
+
+function testIntersection() {
+ assert_equals(entries.length, 1, "IntersectionObserverEntryCount");
+ assert_true(entries[0].isIntersecting, "isIntersecting");
+ assert_approx_equals(entries[0].intersectionRatio, 0.4, 0.001, "intersectionRatio");
+}
+</script>