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: 11.12.js
9 ECMA Section: 11.12 Conditional Operator
10 Description:
11 Logi
13 calORExpression ? AssignmentExpression : AssignmentExpression
15 Semantics
17 The production ConditionalExpression :
18 LogicalORExpression ? AssignmentExpression : AssignmentExpression
19 is evaluated as follows:
21 1. Evaluate LogicalORExpression.
22 2. Call GetValue(Result(1)).
23 3. Call ToBoolean(Result(2)).
24 4. If Result(3) is false, go to step 8.
25 5. Evaluate the first AssignmentExpression.
26 6. Call GetValue(Result(5)).
27 7. Return Result(6).
28 8. Evaluate the second AssignmentExpression.
29 9. Call GetValue(Result(8)).
30 10. Return Result(9).
32 Author: christine@netscape.com
33 Date: 12 november 1997
34 */
35 var SECTION = "11.12";
36 var VERSION = "ECMA_1";
37 startTest();
39 writeHeaderToLog( SECTION + " Conditional operator( ? : )");
41 new TestCase( SECTION,
42 "true ? 'PASSED' : 'FAILED'",
43 "PASSED",
44 (true?"PASSED":"FAILED"));
46 new TestCase( SECTION,
47 "false ? 'FAILED' : 'PASSED'",
48 "PASSED",
49 (false?"FAILED":"PASSED"));
51 new TestCase( SECTION,
52 "1 ? 'PASSED' : 'FAILED'",
53 "PASSED",
54 (true?"PASSED":"FAILED"));
56 new TestCase( SECTION,
57 "0 ? 'FAILED' : 'PASSED'",
58 "PASSED",
59 (false?"FAILED":"PASSED"));
61 new TestCase( SECTION,
62 "-1 ? 'PASSED' : 'FAILED'",
63 "PASSED",
64 (true?"PASSED":"FAILED"));
66 new TestCase( SECTION,
67 "NaN ? 'FAILED' : 'PASSED'",
68 "PASSED",
69 (Number.NaN?"FAILED":"PASSED"));
71 new TestCase( SECTION,
72 "var VAR = true ? , : 'FAILED'",
73 "PASSED",
74 (VAR = true ? "PASSED" : "FAILED") );
76 test();