Re: WindowProxy objects violate ES5 invariants

Hi,

A little point that may make things a little bit annoying: when a 
variable is declared globally with "var" (I assume "let" too and it's 
worse with "const") or a function declared globally, the 
variable/function name is currently reflected as a non-configurable 
property of the global object (I don't know if it's a DOM or an 
ECMAScript thing).

As a consequence, WindowProxy currently reflects non-configurable 
properties for these cases.

Maybe the solution for these is to reflect them as configurable?

David

Received on Saturday, 15 December 2012 14:05:33 UTC