Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / js / mozilla / strict / script-tests / strict-this-is-not-truthy.js
1 // Any copyright is dedicated to the Public Domain.
2 // http://creativecommons.org/licenses/publicdomain/
3
4 // See bug 630543.
5
6 function f() {
7     "use strict";
8     return !this;
9 }
10 assertEq(f.call(null), true);
11
12 reportCompare(0, 0, 'ok');
13
14 var successfullyParsed = true;