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 /* Any copyright is dedicated to the Public Domain.
2 http://creativecommons.org/publicdomain/zero/1.0/ */
3 let win;
5 function test() {
6 waitForExplicitFinish();
8 newWindowWithTabView(function(newWin) {
9 win = newWin;
11 registerCleanupFunction(function() {
12 win.close();
13 });
15 is(win.gBrowser.tabContainer.getAttribute("overflow"), "",
16 "The tabstrip should not be overflowing");
18 finish();
19 }, function(newWin) {
20 /* add a tab with a ridiculously long title to trigger bug 749658 */
21 var longTitle = "this is a very long title for the new tab ";
22 longTitle = longTitle + longTitle + longTitle + longTitle + longTitle;
23 longTitle = longTitle + longTitle + longTitle + longTitle + longTitle;
24 newWin.gBrowser.addTab("data:text/html,<head><title>" + longTitle);
25 });
26 }