From ECMA-262 5th edition, section 15.1: "Unless otherwise specified, the standard built-in properties of the global object have attributes {[[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true}". The other built-in properties of the Global Object can be deleted just fine, as expected, but not the Math property. Is there some meaning behind this inconsistency? With V8, Math can be deleted. With SpiderMonkey, the delete operator returns true, but the property is still there afterwards.
*** This bug has been marked as a duplicate of bug 55343 ***