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 function test() {
2 waitForExplicitFinish();
4 var tab1 = gBrowser.addTab("data:text/plain;charset=utf-8,foo");
5 gBrowser.pinTab(tab1);
7 whenBrowserLoaded(tab1.linkedBrowser, function() {
8 var tab2 = gBrowser.addTab();
9 gBrowser.pinTab(tab2);
11 is(Array.indexOf(gBrowser.tabs, tab1), 0, "pinned tab 1 is at the first position");
12 gBrowser.removeTab(tab1);
13 tab1 = undoCloseTab();
14 ok(tab1.pinned, "pinned tab 1 has been restored as a pinned tab");
15 is(Array.indexOf(gBrowser.tabs, tab1), 0, "pinned tab 1 has been restored to the first position");
17 gBrowser.removeTab(tab1);
18 gBrowser.removeTab(tab2);
19 finish();
20 });
21 }