Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-position/overlay/overlay-transition-backdrop-entry.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Position Test: overlay transition with ::backdrop during entry animation</title>
<link rel="match" href="green-ref.html">
<link rel="author" href="mailto:jarhar@chromium.org">
<style>
body {
background-color: green;
}
[popover] {
display: block;
visibility: hidden;
transition-delay: 2s;
transition-property: overlay;
transition-duration: 2s;
transition-behavior: allow-discrete;
}
[popover]::backdrop {
background-color: blue;
}
</style>
<div popover id="foo"></div>
<script>
foo.offsetTop;
foo.showPopover();
</script>