Bug 524718 - In fullscreen mode, drawintitlebar=true shouldn't add padding. r=dao

This commit is contained in:
Markus Stange 2009-10-31 09:01:12 +01:00
Родитель c4f9a924a2
Коммит b2fe78f831
2 изменённых файлов: 11 добавлений и 2 удалений

Просмотреть файл

@ -22,6 +22,12 @@ toolbarpaletteitem[place="palette"] > toolbaritem > hbox[type="places"] {
background-position: top right;
}
%ifdef XP_MACOSX
#main-window[inFullscreen="true"] {
padding-top: 0; /* override drawintitlebar="true" */
}
%endif
#browser-bottombox[lwthemefooter="true"] {
background-repeat: no-repeat;
background-position: bottom left;

Просмотреть файл

@ -3774,10 +3774,13 @@ var FullScreen =
}
}
if (aShow)
if (aShow) {
gNavToolbox.removeAttribute("inFullscreen");
else
document.documentElement.removeAttribute("inFullscreen");
} else {
gNavToolbox.setAttribute("inFullscreen", true);
document.documentElement.setAttribute("inFullscreen", true);
}
var controls = document.getElementsByAttribute("fullscreencontrol", "true");
for (var i = 0; i < controls.length; ++i)