mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 04:07:59 +01:00
Try harder not to count invisible elements in <count>gi.
This commit is contained in:
@@ -1626,8 +1626,9 @@ const Buffer = Module("buffer", {
|
||||
return false;
|
||||
|
||||
let computedStyle = util.computedStyle(elem);
|
||||
let rect = elem.getBoundingClientRect();
|
||||
return computedStyle.visibility != "hidden" && computedStyle.display != "none" &&
|
||||
computedStyle.MozUserFocus != "ignore";
|
||||
computedStyle.MozUserFocus != "ignore" && rect.width && rect.height;
|
||||
});
|
||||
|
||||
dactyl.assert(elements.length > 0);
|
||||
|
||||
Reference in New Issue
Block a user