diff options
Diffstat (limited to 'testing/web-platform/tests/shadow-dom/invalidate-sibling-different-slots-ref.html')
-rw-r--r-- | testing/web-platform/tests/shadow-dom/invalidate-sibling-different-slots-ref.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/web-platform/tests/shadow-dom/invalidate-sibling-different-slots-ref.html b/testing/web-platform/tests/shadow-dom/invalidate-sibling-different-slots-ref.html new file mode 100644 index 0000000000..1fc6dd5522 --- /dev/null +++ b/testing/web-platform/tests/shadow-dom/invalidate-sibling-different-slots-ref.html @@ -0,0 +1,10 @@ +<!doctype html> +<title>Invalidation works properly across siblings on different slots</title> +<style> +.x { display: table-header-group; } +.x + * { color: green } +</style> +<details open=""> + <summary class="x" id="a">Main summary</summary> + <summary>Should be green</summary> +</details> |