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 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | /* |
michael@0 | 7 | * Date: 15 Feb 2001 |
michael@0 | 8 | * |
michael@0 | 9 | * SUMMARY: calling obj.eval(str) |
michael@0 | 10 | * |
michael@0 | 11 | * See http://bugzilla.mozilla.org/show_bug.cgi?id=68498 |
michael@0 | 12 | * See http://bugzilla.mozilla.org/showattachment.cgi?attach_id=25251 |
michael@0 | 13 | * |
michael@0 | 14 | * Brendan: |
michael@0 | 15 | * |
michael@0 | 16 | * "Backward compatibility: support calling obj.eval(str), which evaluates |
michael@0 | 17 | * str using obj as the scope chain and variable object." |
michael@0 | 18 | */ |
michael@0 | 19 | //----------------------------------------------------------------------------- |
michael@0 | 20 | var BUGNUMBER = 68498; |
michael@0 | 21 | var summary = 'Testing calling obj.eval(str)'; |
michael@0 | 22 | var statprefix = '; currently at expect['; |
michael@0 | 23 | var statsuffix = '] within test -'; |
michael@0 | 24 | var actual = [ ]; |
michael@0 | 25 | var expect = [ ]; |
michael@0 | 26 | |
michael@0 | 27 | |
michael@0 | 28 | // Capture a reference to the global object - |
michael@0 | 29 | var self = this; |
michael@0 | 30 | |
michael@0 | 31 | // This function is the heart of the test - |
michael@0 | 32 | function f(s) {self.eval(s); return y;} |
michael@0 | 33 | |
michael@0 | 34 | |
michael@0 | 35 | // Set the actual-results array - |
michael@0 | 36 | actual[0] = f('var y = 43'); |
michael@0 | 37 | actual[1] = 'y' in self && y; |
michael@0 | 38 | actual[2] = delete y; |
michael@0 | 39 | actual[3] = 'y' in self; |
michael@0 | 40 | |
michael@0 | 41 | // Set the expected-results array - |
michael@0 | 42 | expect[0] = 43; |
michael@0 | 43 | expect[1] = 43; |
michael@0 | 44 | expect[2] = true; |
michael@0 | 45 | expect[3] = false; |
michael@0 | 46 | |
michael@0 | 47 | |
michael@0 | 48 | //------------------------------------------------------------------------------------------------- |
michael@0 | 49 | test(); |
michael@0 | 50 | //------------------------------------------------------------------------------------------------- |
michael@0 | 51 | |
michael@0 | 52 | |
michael@0 | 53 | function test() |
michael@0 | 54 | { |
michael@0 | 55 | enterFunc ('test'); |
michael@0 | 56 | printBugNumber(BUGNUMBER); |
michael@0 | 57 | printStatus (summary); |
michael@0 | 58 | |
michael@0 | 59 | for (var i in expect) |
michael@0 | 60 | { |
michael@0 | 61 | reportCompare(expect[i], actual[i], getStatus(i)); |
michael@0 | 62 | } |
michael@0 | 63 | |
michael@0 | 64 | exitFunc ('test'); |
michael@0 | 65 | } |
michael@0 | 66 | |
michael@0 | 67 | |
michael@0 | 68 | function getStatus(i) |
michael@0 | 69 | { |
michael@0 | 70 | return (summary + statprefix + i + statsuffix); |
michael@0 | 71 | } |