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: proto_3.js
9 Section:
10 Description: Adding properties to an instance
12 This tests Object Hierarchy and Inheritance, as described in the document
13 Object Hierarchy and Inheritance in JavaScript, last modified on 12/18/97
14 15:19:34 on http://devedge.netscape.com/. Current URL:
15 http://devedge.netscape.com/docs/manuals/communicator/jsobj/contents.htm
17 This tests the syntax ObjectName.prototype = new PrototypeObject using the
18 Employee example in the document referenced above.
20 Author: christine@netscape.com
21 Date: 12 november 1997
22 */
24 var SECTION = "proto_3";
25 var VERSION = "JS1_3";
26 var TITLE = "Adding properties to an Instance";
28 startTest();
29 writeHeaderToLog( SECTION + " "+ TITLE);
31 function Employee () {
32 this.name = "";
33 this.dept = "general";
34 }
35 function Manager () {
36 this.reports = [];
37 }
38 Manager.prototype = new Employee();
40 function WorkerBee () {
41 this.projects = new Array();
42 }
44 WorkerBee.prototype = new Employee();
46 function SalesPerson () {
47 this.dept = "sales";
48 this.quota = 100;
49 }
50 SalesPerson.prototype = new WorkerBee();
52 function Engineer () {
53 this.dept = "engineering";
54 this.machine = "";
55 }
56 Engineer.prototype = new WorkerBee();
58 var jim = new Employee();
59 var pat = new Employee();
61 jim.bonus = 300;
63 new TestCase( SECTION,
64 "jim = new Employee(); jim.bonus = 300; jim.bonus",
65 300,
66 jim.bonus );
69 new TestCase( SECTION,
70 "pat = new Employee(); pat.bonus",
71 void 0,
72 pat.bonus );
73 test();