Why does my chrome developer tools show \"Failed to show response data\" in response when the content returned is of type text/html?
What is the alternative to see t
As described by Gideon, this is a known issue. For use window.onunload = function() { debugger; } instead. But you can add a breakpoint in Source tab, then can solve your problem. like this:
window.onunload = function() { debugger; }