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.
1 // |reftest| skip -- obsolete test
2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 /**
9 File Name: regexparg-1.js
10 Description:
12 Regression test for
13 http://scopus/bugsplat/show_bug.cgi?id=122787
14 Passing a regular expression as the first constructor argument fails
16 Author: christine@netscape.com
17 Date: 15 June 1998
18 */
20 var SECTION = "JS_1.2";
21 var VERSION = "JS_1.2";
22 startTest();
23 var TITLE = "The variable statement";
25 writeHeaderToLog( SECTION + " "+ TITLE);
27 function f(x) {return x;}
29 x = f(/abc/);
31 DESCRIPTION = "function f(x) {return x;}; x = f(/abc/); x()";
32 EXPECTED = "error";
34 new TestCase( SECTION,
35 "function f(x) {return x;}; x = f(/abc/); x()",
36 "error",
37 x() );
39 test();