dialog-remove-open-attr-crash.html (225B)
1 <!DOCTYPE html> 2 3 <!-- This test passes if it does not crash. --> 4 5 <dialog id="dialog">Dialog</dialog> 6 7 <script> 8 window.onload = () => { 9 dialog.showModal(); 10 dialog.open = false; 11 dialog.showModal(); 12 } 13 </script>