Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | |
michael@0 | 3 | /* |
michael@0 | 4 | * Any copyright is dedicated to the Public Domain. |
michael@0 | 5 | * http://creativecommons.org/licenses/publicdomain/ |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | function strict() { 'use strict'; return this; } |
michael@0 | 9 | function lenient() { return this; } |
michael@0 | 10 | var obj = {}; |
michael@0 | 11 | |
michael@0 | 12 | assertEq(strict.bind(true)(), true); |
michael@0 | 13 | assertEq(strict.bind(42)(), 42); |
michael@0 | 14 | assertEq(strict.bind("")(), ""); |
michael@0 | 15 | assertEq(strict.bind(null)(), null); |
michael@0 | 16 | assertEq(strict.bind(undefined)(), undefined); |
michael@0 | 17 | assertEq(strict.bind(obj)(), obj); |
michael@0 | 18 | |
michael@0 | 19 | assertEq(lenient.bind(true)() instanceof Boolean, true); |
michael@0 | 20 | assertEq(lenient.bind(42)() instanceof Number, true); |
michael@0 | 21 | assertEq(lenient.bind("")() instanceof String, true); |
michael@0 | 22 | assertEq(lenient.bind(null)(), this); |
michael@0 | 23 | assertEq(lenient.bind(undefined)(), this); |
michael@0 | 24 | assertEq(lenient.bind(obj)(), obj); |
michael@0 | 25 | |
michael@0 | 26 | reportCompare(true, true); |