Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / js / mozilla / strict / 15.10.7-expected.txt
blobb1767d817248cb28deb1f3e33c07a16c520173a2
1 PASS 'use strict'; var r = /foo/; r.source = "bar"; r.source threw exception of type TypeError.
2 PASS var r = /foo/; r.source = "bar"; r.source is "foo"
3 PASS true === true
4 PASS 'use strict'; var r = /foo/; delete r.source threw exception of type TypeError.
5 PASS var r = /foo/; delete r.source is false
6 PASS true === true
7 PASS 'use strict'; var r = /foo/; r.global = true; r.global threw exception of type TypeError.
8 PASS var r = /foo/; r.global = true; r.global is false
9 PASS true === true
10 PASS 'use strict'; var r = /foo/; delete r.global threw exception of type TypeError.
11 PASS var r = /foo/; delete r.global is false
12 PASS true === true
13 PASS 'use strict'; var r = /foo/; r.ignoreCase = true; r.ignoreCase threw exception of type TypeError.
14 PASS var r = /foo/; r.ignoreCase = true; r.ignoreCase is false
15 PASS true === true
16 PASS 'use strict'; var r = /foo/; delete r.ignoreCase threw exception of type TypeError.
17 PASS var r = /foo/; delete r.ignoreCase is false
18 PASS true === true
19 PASS 'use strict'; var r = /foo/; r.multiline = true; r.multiline threw exception of type TypeError.
20 PASS var r = /foo/; r.multiline = true; r.multiline is false
21 PASS true === true
22 PASS 'use strict'; var r = /foo/; delete r.multiline threw exception of type TypeError.
23 PASS var r = /foo/; delete r.multiline is false
24 PASS true === true
25 PASS 'use strict'; var r = /foo/; r.lastIndex = 42; r.lastIndex is 42
26 PASS var r = /foo/; r.lastIndex = 42; r.lastIndex is 42
27 PASS true === true
28 PASS 'use strict'; var r = /foo/; delete r.lastIndex threw exception of type TypeError.
29 PASS var r = /foo/; delete r.lastIndex is false
30 PASS true === true
31  PASSED! 
32 PASS successfullyParsed is true
34 TEST COMPLETE