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/replaced-object-backdrop.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<title>CSS Position Test: Replaced <object> renders ::backdrop in top layer</title>
<link rel="match" href="/css/reference/green.html">
<style>
  object.green::backdrop { background-color: green; visibility: visible; }
  object { visibility: hidden; }
</style>
<object id="pop" popover="auto"></object>
<script>
  pop.showPopover();
  pop.className = "green";
</script>