summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/shadow-dom/invalidate-sibling-different-slots.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/shadow-dom/invalidate-sibling-different-slots.html')
-rw-r--r--testing/web-platform/tests/shadow-dom/invalidate-sibling-different-slots.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/shadow-dom/invalidate-sibling-different-slots.html b/testing/web-platform/tests/shadow-dom/invalidate-sibling-different-slots.html
new file mode 100644
index 0000000000..0846389a9e
--- /dev/null
+++ b/testing/web-platform/tests/shadow-dom/invalidate-sibling-different-slots.html
@@ -0,0 +1,20 @@
+<!doctype html>
+<title>Invalidation works properly across siblings on different slots</title>
+<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1794720">
+<link rel="match" href="invalidate-sibling-different-slots-ref.html">
+<style>
+.x { display: table-header-group; }
+.x + * { color: green }
+</style>
+<details open="">
+ <summary id="a">Main summary</summary>
+ <summary>Should be green</summary>
+</details>
+<script>
+onload = function() {
+ let a = document.getElementById("a");
+ a.getBoundingClientRect();
+ a.setAttribute("class", "x")
+ a.getBoundingClientRect();
+};
+</script>