Skip to content

Commit

Permalink
Make ::backdrop stay in top layer while animating out
Browse files Browse the repository at this point in the history
This patch adds a new internal pseudo class which matches popovers while
they are still in the top layer after they have been closed in order to
also make the corresponding ::backdrop stay in the top layer.

This is based on futhark's patch:
https://chromium-review.googlesource.com/c/chromium/src/+/4554016

HTML spec PR: whatwg/html#9387

Fixed: 1449145
Change-Id: I8e4831e960c5d18fb077f023c119fd0e678541df
  • Loading branch information
josepharhar authored and chromium-wpt-export-bot committed Jun 13, 2023
1 parent 99aa8d1 commit a74e5fb
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
25 changes: 25 additions & 0 deletions css/css-position/overlay/overlay-transition-backdrop-entry.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<title>CSS Position Test: overlay transition with ::backdrop during entry animation</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:[email protected]">
<style>
body {
background-color: green;
}
[popover] {
display: block;
visibility: hidden;
transition-delay: 2s;
transition-property: overlay;
transition-duration: 2s;
}
[popover]::backdrop {
background-color: blue;
}
</style>
<div popover id="foo"></div>
<script>
foo.offsetTop;
foo.showPopover();
</script>
20 changes: 20 additions & 0 deletions css/css-position/overlay/overlay-transition-backdrop.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!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:[email protected]">
<style>
[popover] {
display: block;
visibility: hidden;
transition: overlay 60s step-end;
}
[popover]::backdrop {
background-color: green;
}
</style>
<div popover id="foo"></div>
<script>
foo.showPopover();
foo.hidePopover();
</script>

0 comments on commit a74e5fb

Please sign in to comment.