content-visibility-with-popover-top-layer-and-auto-descendant-ref.html (474B)
1 <!doctype html> 2 <meta charset="utf8"> 3 <title>CSS Content Visibility: content-visibility: auto descendant in popover is shown on showPopover"</title> 4 <meta name="assert" content="content-visibility: auto descendant in popover is shown on showPopover"> 5 6 <div id="spacer" style="height: 100vh"></div> 7 <div popover="manual" style="display: block; position: static;" id="popover"> 8 <span>Test passes if this is visible</span> 9 </div> 10 11 <script> 12 popover.showPopover(); 13 </script>