Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / js / mozilla / strict / primitive-this-no-writeback-expected.txt
blob4c35da462cb838c24df15688a2c17841a2d9b214
1 PASS s === s
2 PASS function () {
3     "use strict";
4     assertEq(this, "s");
5     // The GETTHISPROP should not cause |this| to become wrapped.
6     return [this.m, this];
7 } === function () {
8     "use strict";
9     assertEq(this, "s");
10     // The GETTHISPROP should not cause |this| to become wrapped.
11     return [this.m, this];
13 PASS s === s
14  PASSED! 
15 PASS successfullyParsed is true
17 TEST COMPLETE