2011-05-11 07:13:58 -07:00
|
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
|
|
|
|
function test() {
|
2014-03-30 06:43:50 -07:00
|
|
|
requestLongerTimeout(2);
|
2011-05-11 07:13:58 -07:00
|
|
|
waitForExplicitFinish();
|
|
|
|
|
|
|
|
newWindowWithTabView(function (win) {
|
|
|
|
registerCleanupFunction(function () win.close());
|
|
|
|
|
|
|
|
let cw = win.TabView.getContentWindow();
|
|
|
|
let groupItem = cw.GroupItems.groupItems[0];
|
|
|
|
let tabItem = groupItem.getChild(0);
|
|
|
|
|
|
|
|
hideGroupItem(groupItem, function () {
|
|
|
|
unhideGroupItem(groupItem, function () {
|
|
|
|
let bounds = tabItem.getBounds();
|
|
|
|
groupItem.arrange({immediately: true});
|
|
|
|
ok(bounds.equals(tabItem.getBounds()),
|
|
|
|
"tabItem bounds were correct after unhiding the groupItem");
|
|
|
|
|
|
|
|
finish();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|