dialog-backdrop-crash.html (345B)
1 <!DOCTYPE html> 2 <style> 3 html { 4 overflow: hidden; 5 } 6 7 dialog { 8 container-type: size; 9 width: 100px; 10 height: 100px; 11 } 12 13 @container (width > 1px) { 14 dialog::backdrop { 15 margin: 10px; 16 background-color: green; 17 } 18 } 19 </style> 20 <dialog id=dialog> 21 Hello World 22 </dialog> 23 <script> 24 dialog.showModal(); 25 </script>