Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/popovers/popover-iframe-backdrop.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>::backdrop is supported on iframe</title>
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=2015488">
<link rel="match" href="popover-img-backdrop-ref.html">
<style>
iframe:popover-open {
visibility: hidden;
&::backdrop {
visibility: visible;
background-color: green;
}
}
</style>
<iframe popover="" id="a" style="direction: rtl"></iframe>
<script>
a.showPopover({ modal: true });
</script>