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: lexical-001.js
9 CorrespondsTo: ecma/LexicalConventions/7.2.js
10 ECMA Section: 7.2 Line Terminators
11 Description: - readability
12 - separate tokens
13 - may occur between any two tokens
14 - cannot occur within any token, not even a string
15 - affect the process of automatic semicolon insertion.
17 white space characters are:
18 unicode name formal name string representation
19 \u000A line feed <LF> \n
20 \u000D carriage return <CR> \r
22 this test uses onerror to capture line numbers. because
23 we use on error, we can only have one test case per file.
25 Author: christine@netscape.com
26 Date: 11 september 1997
27 */
28 var SECTION = "lexical-001";
29 var VERSION = "JS1_4";
30 var TITLE = "Line Terminators";
32 startTest();
33 writeHeaderToLog( SECTION + " "+ TITLE);
35 var result = "Failed";
36 var exception = "No exception thrown";
37 var expect = "Passed";
39 try {
40 result = eval("\r\n\expect");
41 } catch ( e ) {
42 exception = e.toString();
43 }
45 new TestCase(
46 SECTION,
47 "OBJECT = new Object; result = new OBJECT()" +
48 " (threw " + exception +")",
49 expect,
50 result );
52 test();