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.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | |
michael@0 | 7 | /** |
michael@0 | 8 | File Name: instanceof-003.js |
michael@0 | 9 | ECMA Section: |
michael@0 | 10 | Description: http://bugzilla.mozilla.org/show_bug.cgi?id=7635 |
michael@0 | 11 | |
michael@0 | 12 | js> function Foo() {} |
michael@0 | 13 | js> theproto = {}; |
michael@0 | 14 | [object Object] |
michael@0 | 15 | js> Foo.prototype = theproto |
michael@0 | 16 | [object Object] |
michael@0 | 17 | js> theproto instanceof Foo |
michael@0 | 18 | true |
michael@0 | 19 | |
michael@0 | 20 | I think this should be 'false' |
michael@0 | 21 | |
michael@0 | 22 | |
michael@0 | 23 | Author: christine@netscape.com |
michael@0 | 24 | Date: 12 november 1997 |
michael@0 | 25 | |
michael@0 | 26 | Modified to conform to ECMA3 |
michael@0 | 27 | https://bugzilla.mozilla.org/show_bug.cgi?id=281606 |
michael@0 | 28 | */ |
michael@0 | 29 | var SECTION = "instanceof-003"; |
michael@0 | 30 | var VERSION = "ECMA_2"; |
michael@0 | 31 | var TITLE = "instanceof operator"; |
michael@0 | 32 | var BUGNUMBER ="7635"; |
michael@0 | 33 | |
michael@0 | 34 | startTest(); |
michael@0 | 35 | |
michael@0 | 36 | function Foo() {}; |
michael@0 | 37 | theproto = {}; |
michael@0 | 38 | Foo.prototype = theproto; |
michael@0 | 39 | |
michael@0 | 40 | AddTestCase( |
michael@0 | 41 | "function Foo() = {}; theproto = {}; Foo.prototype = theproto; " + |
michael@0 | 42 | "theproto instanceof Foo", |
michael@0 | 43 | false, |
michael@0 | 44 | theproto instanceof Foo ); |
michael@0 | 45 | |
michael@0 | 46 | |
michael@0 | 47 | var o = {}; |
michael@0 | 48 | |
michael@0 | 49 | // https://bugzilla.mozilla.org/show_bug.cgi?id=281606 |
michael@0 | 50 | try |
michael@0 | 51 | { |
michael@0 | 52 | AddTestCase( |
michael@0 | 53 | "o = {}; o instanceof o", |
michael@0 | 54 | "error", |
michael@0 | 55 | o instanceof o ); |
michael@0 | 56 | } |
michael@0 | 57 | catch(e) |
michael@0 | 58 | { |
michael@0 | 59 | AddTestCase( |
michael@0 | 60 | "o = {}; o instanceof o", |
michael@0 | 61 | "error", |
michael@0 | 62 | "error" ); |
michael@0 | 63 | } |
michael@0 | 64 | |
michael@0 | 65 | test(); |