Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / js / postfix-syntax-expected.txt
blob9c04e84f3bd3a044e595fa45738f8f61fddab218
1 This test checks whether various forms of postincrement expression are allowed.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS x++ is 0
7 PASS window.x++ is 1
8 PASS window["x"]++ is 2
9 PASS (x)++ is 3
10 PASS (window.x)++ is 4
11 PASS (window["x"])++ is 5
12 PASS (y, x++) is 6
13 PASS ((x))++ is 7
14 PASS ((window.x))++ is 8
15 PASS ((window["x"]))++ is 9
16 PASS (y, x)++ threw exception ReferenceError: Invalid left-hand side expression in postfix operation.
17 PASS (true ? x : y)++ threw exception ReferenceError: Invalid left-hand side expression in postfix operation.
18 PASS x++++ threw exception SyntaxError: Unexpected token ++.
19 PASS x is 0
20 PASS y is 0
21 PASS successfullyParsed is true
23 TEST COMPLETE