1 PASS 'use strict'; var s = str(); s.length = 1; s.length threw exception of type TypeError.
2 PASS var s = str(); s.length = 1; s.length is 3
4 PASS 'use strict'; var s = str(); delete s.length threw exception of type TypeError.
5 PASS var s = str(); delete s.length is false
7 PASS 'use strict'; "foo".length = 1 threw exception of type TypeError.
8 PASS "foo".length = 1 is 1
10 PASS 'use strict'; delete "foo".length threw exception of type TypeError.
11 PASS delete "foo".length is false
14 PASS successfullyParsed is true