popover-anchor-inset-rule-display.tentative.html (467B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <link rel=author href="mailto:masonf@chromium.org"> 4 <link rel=help href="https://html.spec.whatwg.org/multipage/popover.html"> 5 <link rel=match href="popover-anchor-inset-rule-display-ref.html"> 6 7 <div popover=manual anchor></div> 8 9 <style> 10 [popover][anchor] { 11 background: green; 12 width: 100px; 13 height: 100px; 14 } 15 body { margin: 0; } 16 </style> 17 18 <script> 19 document.querySelector('[popover]').showPopover(); 20 </script>