Chrome (and Canary) used to be able to show javascript source which was embedded in aspx files.
Typically, I would add a debugger;
statement, save, and then load my web page in Chrome with the developer tools window open. When Chrome hit the debugger;
statement, it would stop and then show the javascript source, so that I could inspect variable or step through code.
A recent change has changed this so that now, when the debugger;
statement is executed, Chrome dutifully stops execution but it is unable to show the source.
Does anyone know what has changed; if there are any configuration settings which would re-enable the previous behavior; or how to make this work correctly?
Chrome version: 50.0.2661.102 m (on Windows). I'm also seeing this in version 53.0.2763.0 canary (64-bit)
I suspect this applies to any kind of embedded script, not just aspx.