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: string-001.js
9 Corresponds To: 15.5.4.2-2-n.js
10 ECMA Section: 15.5.4.2 String.prototype.toString()
12 Description: Returns this string value. Note that, for a String
13 object, the toString() method happens to return the same
14 thing as the valueOf() method.
16 The toString function is not generic; it generates a
17 runtime error if its this value is not a String object.
18 Therefore it connot be transferred to the other kinds of
19 objects for use as a method.
21 Author: christine@netscape.com
22 Date: 1 october 1997
23 */
24 var SECTION = "string-001";
25 var VERSION = "JS1_4";
26 var TITLE = "String.prototype.toString";
28 startTest();
29 writeHeaderToLog( SECTION + " "+ TITLE);
31 var result = "Failed";
32 var exception = "No exception thrown";
33 var expect = "Passed";
35 try {
36 OBJECT = new Object();
37 OBJECT.toString = String.prototype.toString();
38 result = OBJECT.toString();
39 } catch ( e ) {
40 result = expect;
41 exception = e.toString();
42 }
44 new TestCase(
45 SECTION,
46 "OBJECT = new Object; "+
47 " OBJECT.toString = String.prototype.toString; OBJECT.toString()" +
48 " (threw " + exception +")",
49 expect,
50 result );
52 test();