dialog-requestclose-crash.html (346B)
1 <!DOCTYPE html> 2 <link rel=author href="mailto:luke@warlow.dev"> 3 <link rel=author href="mailto:masonf@chromium.org"> 4 <link rel=help href="https://html.spec.whatwg.org/#attr-dialog-closedby"> 5 6 <!-- This test passes if it does not crash. --> 7 8 <dialog id="dialog" open>Dialog</dialog> 9 10 <script> 11 window.onload = () => dialog.requestClose(); 12 </script>