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 | var BUGNUMBER = 465377; |
michael@0 | 8 | var summary = 'instanceof relations between Error objects'; |
michael@0 | 9 | var actual = ''; |
michael@0 | 10 | var expect = ''; |
michael@0 | 11 | |
michael@0 | 12 | |
michael@0 | 13 | //----------------------------------------------------------------------------- |
michael@0 | 14 | test(); |
michael@0 | 15 | //----------------------------------------------------------------------------- |
michael@0 | 16 | |
michael@0 | 17 | function test() |
michael@0 | 18 | { |
michael@0 | 19 | enterFunc ('test'); |
michael@0 | 20 | printBugNumber(BUGNUMBER); |
michael@0 | 21 | printStatus (summary); |
michael@0 | 22 | |
michael@0 | 23 | expect = actual = 'No Exception'; |
michael@0 | 24 | |
michael@0 | 25 | try |
michael@0 | 26 | { |
michael@0 | 27 | var list = [ |
michael@0 | 28 | "Error", |
michael@0 | 29 | "InternalError", |
michael@0 | 30 | "EvalError", |
michael@0 | 31 | "RangeError", |
michael@0 | 32 | "ReferenceError", |
michael@0 | 33 | "SyntaxError", |
michael@0 | 34 | "TypeError", |
michael@0 | 35 | "URIError" |
michael@0 | 36 | ]; |
michael@0 | 37 | var instances = []; |
michael@0 | 38 | |
michael@0 | 39 | for (var i = 0; i != list.length; ++i) { |
michael@0 | 40 | var name = list[i]; |
michael@0 | 41 | var constructor = this[name]; |
michael@0 | 42 | var tmp = constructor.name; |
michael@0 | 43 | if (tmp !== name) |
michael@0 | 44 | throw "Bad value for "+name+".name: "+uneval(tmp); |
michael@0 | 45 | instances[i] = new constructor(); |
michael@0 | 46 | } |
michael@0 | 47 | |
michael@0 | 48 | for (var i = 0; i != instances.length; ++i) { |
michael@0 | 49 | var instance = instances[i]; |
michael@0 | 50 | var name = instance.name; |
michael@0 | 51 | var constructor = instance.constructor; |
michael@0 | 52 | if (constructor !== this[name]) |
michael@0 | 53 | throw "Bad value of (new "+name+").constructor: "+uneval(tmp); |
michael@0 | 54 | var tmp = constructor.name; |
michael@0 | 55 | if (tmp !== name) |
michael@0 | 56 | throw "Bad value for constructor.name: "+uneval(tmp); |
michael@0 | 57 | if (!(instance instanceof Object)) |
michael@0 | 58 | throw "Bad instanceof Object for "+name; |
michael@0 | 59 | if (!(instance instanceof Error)) |
michael@0 | 60 | throw "Bad instanceof Error for "+name; |
michael@0 | 61 | if (!(instance instanceof constructor)) |
michael@0 | 62 | throw "Bad instanceof constructor for "+name; |
michael@0 | 63 | if (instance instanceof Function) |
michael@0 | 64 | throw "Bad instanceof Function for "+name; |
michael@0 | 65 | for (var j = 1; j != instances.length; ++j) { |
michael@0 | 66 | if (i != j && instance instanceof instances[j].constructor) { |
michael@0 | 67 | throw "Unexpected (new "+name+") instanceof "+ instances[j].name; |
michael@0 | 68 | } |
michael@0 | 69 | } |
michael@0 | 70 | } |
michael@0 | 71 | |
michael@0 | 72 | print("OK"); |
michael@0 | 73 | } |
michael@0 | 74 | catch(ex) |
michael@0 | 75 | { |
michael@0 | 76 | actual = ex + ''; |
michael@0 | 77 | } |
michael@0 | 78 | reportCompare(expect, actual, summary); |
michael@0 | 79 | |
michael@0 | 80 | exitFunc ('test'); |
michael@0 | 81 | } |