Bug 522529: Diagonal panning is jerky (and a few other issues) [r=mark.finkle]

This commit is contained in:
Benjamin Stover 2009-10-15 15:00:39 -04:00
Родитель 4a0b52eec0
Коммит ee526cd913
2 изменённых файлов: 64 добавлений и 43 удалений

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

@ -193,7 +193,8 @@
</vbox>
<!-- Content Area -->
<scrollbox id="tile-container-container" style="overflow: hidden; -moz-box-orient: vertical;">
<scrollbox id="tile-container-container" class="window-width window-height" style="overflow: hidden;">
<vbox>
<!-- Main Toolbar -->
<box id="toolbar-container" class="panel-dark toolbar-height">
<box id="toolbar-moveable-container">
@ -237,7 +238,8 @@
<notificationbox id="notifications"/>
<!-- Content viewport -->
<html:div id="tile-container" class="window-height" style="overflow: hidden;"/>
<html:div id="tile-container" style="overflow: hidden;"/>
</vbox>
</scrollbox>
<!-- Right toolbar -->

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

@ -14,4 +14,23 @@ function test() {
isnot(browser, null, "Should have a browser");
is(browser.currentURI.spec, Browser.selectedTab.browser.currentURI.spec, "selectedBrowser == selectedTab.browser");
testContentContainerSize();
}
function testContentContainerSize() {
let tiles = document.getElementById("tile-container");
let oldtilesstyle = tiles.getAttribute("style");
try {
tiles.style.width = (window.innerWidth + 100) + "px";
tiles.style.height = (window.innerHeight + 100) + "px";
let container = document.getElementById("tile-container-container");
let rect = container.getBoundingClientRect();
ok(rect.width == window.innerWidth, "Content container is same width as window");
ok(rect.height == window.innerHeight, "Content container is same height as window");
}
finally {
tiles.setAttribute("style", oldtilesstyle);
}
}