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 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /**
8 * File Name: boolean-001.js
9 * Description:
10 *
11 * http://scopus.mcom.com/bugsplat/show_bug.cgi?id=99232
12 *
13 * eval("function f(){}function g(){}") at top level is an error for JS1.2
14 and above (missing ; between named function expressions), but declares f
15 and g as functions below 1.2.
16 *
17 * Fails to produce error regardless of version:
18 * js> version(100)
19 120
20 js> eval("function f(){}function g(){}")
21 js> version(120);
22 100
23 js> eval("function f(){}function g(){}")
24 js>
25 * Author: christine@netscape.com
26 * Date: 11 August 1998
27 */
28 var SECTION = "function-001.js";
29 var VERSION = "JS1_1";
30 var TITLE = "functions not separated by semicolons are not errors in version 110 ";
31 var BUGNUMBER="99232";
33 startTest();
34 writeHeaderToLog( SECTION + " "+ TITLE);
36 result = "passed";
38 new TestCase(
39 SECTION,
40 "eval(\"function f(){}function g(){}\")",
41 void 0,
42 eval("function f(){}function g(){}") );
44 test();