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-anchor-inset-rule-display.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<link rel=author href="mailto:masonf@chromium.org">
<link rel=match href="popover-anchor-inset-rule-display-ref.html">
<div popover=manual anchor></div>
<style>
[popover][anchor] {
background: green;
width: 100px;
height: 100px;
}
body { margin: 0; }
</style>
<script>
document.querySelector('[popover]').showPopover();
</script>