Update: this is truly a regression between Chrome 41 and Chrome 42. Tracked here: http://crbug.com/478522
Chrome 41 output: 
Chrome 42 Output:

They made syntax highlighting improvements when entering dev tools, and that probably broke. I ping a friend who is deeply involved with dev tools. Nice to find.
Not. The problem you are describing is very real.
Objects created using constructors will be displayed when they are registered and, as a rule, are better debugged in Chrome (and in node / io.js).
For this reason, I avoid Object.create for prototypical inheritance in my own code, although I prefer it conceptually.
I think you understand this, but I still want to clarify for future readers. Note that inheritance is still happening with the version of Object.create . The only difference is how the object is registered and processed in the debugger.
Benjamin gruenbaum
source share