1
0
Fork 0
firefox/testing/web-platform/tests/css/css-position/overlay/overlay-transition-backdrop.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

22 lines
584 B
HTML

<!DOCTYPE html>
<title>CSS Position Test: overlay transition with ::backdrop</title>
<link rel="help" href="https://drafts.csswg.org/css-position-4/#overlay">
<link rel="match" href="green-ref.html">
<link rel="author" href="mailto:jarhar@chromium.org">
<style>
[popover] {
display: block;
visibility: hidden;
transition: overlay 60s step-end;
transition-behavior: allow-discrete;
}
[popover]::backdrop {
visibility: visible;
background-color: green;
}
</style>
<div popover id="foo"></div>
<script>
foo.showPopover();
foo.hidePopover();
</script>