Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 }