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 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /**
5 * Passing arguments by value differs from by reference and do not change values to be passed
6 *
7 * @path ch08/8.7/S8.7_A6.js
8 * @description Adding original variable with referenced one inside function
9 */
11 var n = 1;
12 var m = n;
14 function addFirst2Second(first, second){first += second;}
16 addFirst2Second(n, m);
18 //////////////////////////////////////////////////////////////////////////////
19 //CHECK#1
20 if (m !== 1) {
21 $ERROR('#1: var n = 1; var m = n; function addFirst2Second(first, second){first += second;} addFirst2Second(n, m); m === 1. Actual: ' + (m));
22 }
24 //
25 //////////////////////////////////////////////////////////////////////////////