|
1 /* Any copyright is dedicated to the Public Domain. |
|
2 http://creativecommons.org/publicdomain/zero/1.0/ */ |
|
3 let win; |
|
4 |
|
5 function test() { |
|
6 waitForExplicitFinish(); |
|
7 |
|
8 newWindowWithTabView(function(newWin) { |
|
9 win = newWin; |
|
10 |
|
11 registerCleanupFunction(function() { |
|
12 win.close(); |
|
13 }); |
|
14 |
|
15 is(win.gBrowser.tabContainer.getAttribute("overflow"), "", |
|
16 "The tabstrip should not be overflowing"); |
|
17 |
|
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 } |