1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-21 15:05:45 +01:00

Fix rehash on FF6.

This commit is contained in:
Kris Maglione
2011-09-08 16:42:06 -04:00
parent c6035ce674
commit de0ad598e5
2 changed files with 14 additions and 5 deletions

View File

@@ -770,6 +770,15 @@ var DOM = Class("DOM", {
continue;
force = Math.round(isect.width - rect.width) || Math.round(isect.height - rect.height);
let vp = parent.viewport;
if (force)
util.dump(vp,
rect.left - vp.left,
rect.right - vp.right,
rect.top - vp.top,
rect.bottom - vp.bottom,
isect.width - rect.width, isect.height - rect.height,
parent[0]);
if (force)
break;
}