content-with-top-layer-ref.html (410B)
1 <!doctype html> 2 <meta charset="utf8"> 3 <title>CSS Content Visibility: dialog shows when rendered (ref)</title> 4 5 <style> 6 .box { width: 100px; height: 100px; border: 1px solid black; } 7 dialog { outline: none; } 8 </style> 9 10 <div id=container class=box> 11 This test passes if you can see “PASS” in a white box. 12 <dialog id=dialog>PASS<div id=inner></div></dialog> 13 </div> 14 text 15 16 <script> 17 dialog.showModal(); 18 </script>