Skip to content

Instantly share code, notes, and snippets.

@weizman
Last active January 30, 2019 22:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weizman/f897400a1a49a6de88a1aecb24a5e3a9 to your computer and use it in GitHub Desktop.
Save weizman/f897400a1a49a6de88a1aecb24a5e3a9 to your computer and use it in GitHub Desktop.
run this code in devtools console and than try to shutdown the tab - see how Chrome suddenly respects `debugger;` statement!
// run this code in devtools console and than try to shutdown
// the tab - see how Chrome suddenly respects `debugger;` statement!
window.onunload = (e) => {
debugger;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment