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 | function test1() { |
michael@0 | 2 | var BUGNUMBER = ''; |
michael@0 | 3 | var summary = ''; |
michael@0 | 4 | var actual = ''; |
michael@0 | 5 | test(BUGNUMBER); |
michael@0 | 6 | function test() { |
michael@0 | 7 | try { |
michael@0 | 8 | (function () { eval("'foo'.b()", arguments) })(); |
michael@0 | 9 | } catch(ex) { |
michael@0 | 10 | actual = ex + ''; |
michael@0 | 11 | } |
michael@0 | 12 | } |
michael@0 | 13 | assertEq(actual, 'TypeError: "foo".b is not a function'); |
michael@0 | 14 | } |
michael@0 | 15 | test1(); |
michael@0 | 16 | |
michael@0 | 17 | function test2() { |
michael@0 | 18 | var BUGNUMBER = ''; |
michael@0 | 19 | var summary = ''; |
michael@0 | 20 | function g() { |
michael@0 | 21 | 'use strict'; |
michael@0 | 22 | try { |
michael@0 | 23 | eval('function foo() { var a, arguments, b;}'); |
michael@0 | 24 | } catch (x) { |
michael@0 | 25 | return (x instanceof SyntaxError); |
michael@0 | 26 | } |
michael@0 | 27 | }; |
michael@0 | 28 | assertEq(g(), true); |
michael@0 | 29 | } |
michael@0 | 30 | test2(); |