We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f6ef8d commit df562e0Copy full SHA for df562e0
lib/commons/dom/get-visible-child-text-rects.js
@@ -43,11 +43,11 @@ const getVisibleChildTextRects = memoize(
43
}
44
45
if (includeOverflowHiddenRect) {
46
+ clientRects.push(...filterHiddenRects(contentRects, []));
47
+ } else {
48
clientRects.push(
49
...filterHiddenRects(contentRects, overflowHiddenNodes)
50
);
- } else {
- clientRects.push(...filterHiddenRects(contentRects, []));
51
52
});
53
0 commit comments