Bug 897160 - Set a minimum width for the Firefox window. r=mconley

This commit is contained in:
Jared Wein 2013-08-16 14:03:43 -04:00
parent 94c836784c
commit d0ff61182b
2 changed files with 9 additions and 1 deletions

View File

@ -5,6 +5,14 @@
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");
#main-window:not([chromehidden~="toolbar"]) {
%ifdef XP_MACOSX
min-width: 425px;
%else
min-width: 390px;
%endif
}
searchbar {
-moz-binding: url("chrome://browser/content/search/search.xml#searchbar");
}

View File

@ -3,7 +3,7 @@
function test() {
waitForExplicitFinish();
newWindowWithTabView(onTabViewShown);
newWindowWithTabView(onTabViewShown, null, 850);
}
function onTabViewShown(win) {