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 Filename: strictEquality.js
9 Description: 'This tests the operator ==='
11 Author: Nick Lerissa
12 Date: Fri Feb 13 09:58:28 PST 1998
13 */
15 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"';
16 var VERSION = 'no version';
17 startTest();
18 var TITLE = 'operator "==="';
20 writeHeaderToLog('Executing script: strictEquality.js');
21 writeHeaderToLog( SECTION + " "+ TITLE);
23 new TestCase( SECTION, "('8' === 8) ",
24 false, ('8' === 8));
26 new TestCase( SECTION, "(8 === 8) ",
27 true, (8 === 8));
29 new TestCase( SECTION, "(8 === true) ",
30 false, (8 === true));
32 new TestCase( SECTION, "(new String('') === new String('')) ",
33 false, (new String('') === new String('')));
35 new TestCase( SECTION, "(new Boolean(true) === new Boolean(true))",
36 false, (new Boolean(true) === new Boolean(true)));
38 var anObject = { one:1 , two:2 };
40 new TestCase( SECTION, "(anObject === anObject) ",
41 true, (anObject === anObject));
43 new TestCase( SECTION, "(anObject === { one:1 , two:2 }) ",
44 false, (anObject === { one:1 , two:2 }));
46 new TestCase( SECTION, "({ one:1 , two:2 } === anObject) ",
47 false, ({ one:1 , two:2 } === anObject));
49 new TestCase( SECTION, "(null === null) ",
50 true, (null === null));
52 new TestCase( SECTION, "(null === 0) ",
53 false, (null === 0));
55 new TestCase( SECTION, "(true === !false) ",
56 true, (true === !false));
58 test();