Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / js / pic / cached-named-property-getter-expected.txt
blob261b606eb1a2709c1ba87b5c7bfddad3fd2c119b
1 This page tests cached access to getters and setters. If the test passes, you'll see a series of PASS messages below.
3 PASS: testGetter({__proto__: {count: 'FAIL'}, get length(){ return this.count; }, count: 7}) should be 7 and is.
4 PASS: testGetter(testFunction3) should be 3 and is.
5 PASS: testGetter(testFunction5) should be 5 and is.
6 PASS: testProtoGetter({__proto__: {count: 'FAIL', get length(){ return this.count; }}, count: 7}) should be 7 and is.
7 PASS: testProtoGetter({__proto__: testFunction3, count: 'FAIL'}) should be 3 and is.
8 PASS: testProtoGetter({__proto__: testFunction5, count: 'FAIL'}) should be 5 and is.
9 PASS: testProtoChainGetter({__proto__: {__proto__: {count: 'FAIL', get length(){ return this.count; }}}, count: 7}) should be 7 and is.
10 PASS: testProtoChainGetter({__proto__: {__proto__: testFunction3}, count: 'FAIL'}) should be 3 and is.
11 PASS: testProtoChainGetter({__proto__: {__proto__: testFunction5}, count: 'FAIL'}) should be 5 and is.