According to http://www.ecma-international.org/ecma-262/6.0/index.html#sec-undefined, JSGlobalObject got properties such as "undefined" which are non-writable and non-configurable. So the following code should throw a type error: ``` Object.defineProperty(this, "undefined", { configurable: true, get: function() { return false; } }); ``` And it does in Chrome, but currently does not in Safari.
<rdar://problem/56658015>
Oops, I did not realize that this was already in the bugzilla. *** This bug has been marked as a duplicate of bug 203456 ***