Steps to reproduce:
- php -S localhost:8080
- open https://localhost:8080
- Click the button
- Chrome crashes
Steps to reproduce:
<script> | |
var w; | |
function launch() { | |
w = window.open('popup.html','name',"width=600,height=400,scrollbars=yes,resizable=yes,dependent=yes"); | |
} | |
function closeWindow() { | |
w.close(); | |
} | |
</script> | |
<button onclick="launch();">open</a> |
<script> | |
window.setTimeout(function() { | |
opener.closeWindow(); | |
},1); | |
</script> |