Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
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();