2 "This tests that a assigning to a readonly property in a static or symbol table throws in strict mode."
5 function testWindowUndefined()
11 return e
instanceof TypeError
;
16 function testNumberMAX_VALUE()
20 Number
.MAX_VALUE
= 42;
22 return e
instanceof TypeError
;
27 shouldBeTrue('testWindowUndefined()');
28 shouldBeTrue('testNumberMAX_VALUE()');