summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/shadow-dom/offsetTop-offsetLeft-across-shadow-boundaries.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/shadow-dom/offsetTop-offsetLeft-across-shadow-boundaries.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/shadow-dom/offsetTop-offsetLeft-across-shadow-boundaries.html')
-rw-r--r--testing/web-platform/tests/shadow-dom/offsetTop-offsetLeft-across-shadow-boundaries.html94
1 files changed, 94 insertions, 0 deletions
diff --git a/testing/web-platform/tests/shadow-dom/offsetTop-offsetLeft-across-shadow-boundaries.html b/testing/web-platform/tests/shadow-dom/offsetTop-offsetLeft-across-shadow-boundaries.html
new file mode 100644
index 0000000000..27b1faa171
--- /dev/null
+++ b/testing/web-platform/tests/shadow-dom/offsetTop-offsetLeft-across-shadow-boundaries.html
@@ -0,0 +1,94 @@
+<!DOCTYPE html>
+<link rel=author href="mailto:jarhar@chromium.org">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+
+<style>
+.box {
+ width: 10px;
+ height: 10px;
+}
+</style>
+
+<div>
+ <template shadowrootmode=open>
+ <style>
+ .box {
+ width: 10px;
+ height: 10px;
+ }
+ </style>
+ <div class=box></div>
+ <div style="position: relative">
+ <div class=box></div>
+ <slot></slot>
+ </div>
+ </template>
+ <div class=box></div>
+ <div id=target1 style="position: absolute" class=box></div>
+</div>
+
+<span>
+ <template shadowrootmode=open>
+ <style>
+ .box {
+ width: 10px;
+ height: 10px;
+ }
+ </style>
+ <span class=box></span>
+ <span style="position: relative">
+ <span class=box></span>
+ <slot></slot>
+ </span>
+ </template>
+ <span class=box></span>
+ <span id=target2 style="position: absolute" class=box></span>
+</span>
+
+<div>
+ <template shadowrootmode=open>
+ <style>
+ .box {
+ width: 10px;
+ height: 10px;
+ }
+ </style>
+ <div class=box></div>
+ <div style="position: relative">
+ <div class=box></div>
+ <div>
+ <template shadowrootmode=open>
+ <style>
+ .box {
+ width: 10px;
+ height: 10px;
+ }
+ </style>
+ <div class=box></div>
+ <div style="position: relative">
+ <div class=box></div>
+ <slot></slot>
+ </div>
+ </template>
+ <slot></slot>
+ </div>
+ </div>
+ </template>
+ <div class=box></div>
+ <div id=target3 style="position: absolute" class=box></div>
+</div>
+
+<script>
+test(() => {
+ assert_equals(target1.offsetTop, 38);
+}, 'Verifies that HTMLElement.offsetTop accounts for shadow boundaries.');
+
+test(() => {
+ assert_equals(target2.offsetLeft, 8);
+}, 'Verifies that HTMLElement.offsetLeft accounts for shadow boundaries.');
+
+test(() => {
+ assert_equals(target3.offsetTop, 88);
+}, 'Verifies that HTMLElement.offsetTop accounts for shadow boundaries when nested in multiple shadow roots.');
+</script>