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 // |reftest| skip -- obsolete test
2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 //-----------------------------------------------------------------------------
8 var BUGNUMBER = 340526;
9 var summary = 'Iterators: cross-referenced objects with close handler can ' +
10 'delay close handler execution';
12 printBugNumber(BUGNUMBER);
13 printStatus (summary);
15 var close_count = 0;
17 function gen()
18 {
19 try {
20 yield 0;
21 } finally {
22 ++close_count;
23 }
24 }
26 var iter1 = gen();
27 var iter2 = gen();
29 iter1.another = iter2;
30 iter2.another = iter1;
32 iter1.next();
33 iter2.next();
35 iter1 = null;
36 iter2 = null;
38 gc();
40 var expect = 2;
41 var actual = close_count;
43 reportCompare(expect, actual, summary);