Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / js / nested-function-scope-expected.txt
blob929fce9c7f3cd3426844b2a0282e6498d65e4e05
1 This page tests issues of scope with nested functions.
3 Before parsing f:
4 -----
5 PASS: typeof f should be function and is.
6 PASS: typeof f.f1 should be undefined and is.
8 After parsing f, but before calling f:
9 -----
10 PASS: typeof f should be function and is.
11 PASS: typeof f.f1 should be undefined and is.
13 In call to f:
14 -----
15 PASS: typeof f should be function and is.
16 PASS: typeof f1 should be function and is.
17 PASS: typeof f.f1 should be undefined and is.
18 PASS: typeof x should be number and is.
19 PASS: typeof y should be undefined and is.