Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / js / mozilla / strict / 15.5.5.1-expected.txt
blobe2b91548b1c111ae8520888322ded93740532bb8
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
3 PASS true === true
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
6 PASS true === true
7 PASS 'use strict'; "foo".length = 1 threw exception of type TypeError.
8 PASS "foo".length = 1 is 1
9 PASS true === true
10 PASS 'use strict'; delete "foo".length threw exception of type TypeError.
11 PASS delete "foo".length is false
12 PASS true === true
13  PASSED! 
14 PASS successfullyParsed is true
16 TEST COMPLETE