Chrome DevTools - ¿Por qué se muestra variable en el reloj pero no bajo alcance?

a = {test1: 'test1'}
b = {test2: 'test2', __proto__: a}

b >> {test2: "test2", [[Prototype]]: Object}
b.test1 >> 'test1'
SAMER SAEID