Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / js / mozilla / strict / 11.4.1-expected.txt
blob7cf43a34e86d99eb1e1cdd9d903c6acc490ef8e0
1 PASS Function("'use strict'; delete x;") threw exception of type SyntaxError.
2 PASS !!Function("delete x;") is true
3 PASS true === true
4 PASS Function("'use strict'; delete (x);") threw exception of type SyntaxError.
5 PASS !!Function("delete (x);") is true
6 PASS true === true
7 PASS !!Function("'use strict'; delete x.y;") is true
8 PASS !!Function("delete x.y;") is true
9 PASS true === true
10 PASS Function("'use strict'; function f() { delete x; }") threw exception of type SyntaxError.
11 PASS !!Function("function f() { delete x; }") is true
12 PASS true === true
13 PASS Function("'use strict'; function f() { \"use strict\"; delete x; }") threw exception of type SyntaxError.
14 PASS Function("function f() { \"use strict\"; delete x; }") threw exception of type SyntaxError.
15 PASS true === true
16  PASSED! 
17 PASS successfullyParsed is true
19 TEST COMPLETE