MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / hiddenByOverflow

Function hiddenByOverflow

javascript/atoms/dom.js:565–571  ·  view source on GitHub ↗
(e)

Source from the content-addressed store, hash-verified

563
564 // Elements that are hidden by overflow are not shown.
565 function hiddenByOverflow(e) {
566 return bot.dom.getOverflowState(e) == bot.dom.OverflowState.HIDDEN &&
567 goog.array.every(e.childNodes, function (n) {
568 return !bot.dom.isElement(n) || hiddenByOverflow(n) ||
569 !positiveSize(n);
570 });
571 }
572 return !hiddenByOverflow(elem);
573};
574

Callers 1

dom.jsFile · 0.70

Calls 1

positiveSizeFunction · 0.70

Tested by

no test coverage detected