(el, x)
| 666 | : el.clientHeight + 10 < el.scrollHeight; |
| 667 | } |
| 668 | function computedOverflow(el, x) { |
| 669 | let property = x ? "overflow-x" : "overflow-y"; |
| 670 | return getComputedStyle(el, "").getPropertyValue(property); |
| 671 | } |
| 672 | // typically for <body> and <html> |
| 673 | function overflowNotHidden(el, x) { |
| 674 | return computedOverflow(el, x) != "hidden"; |
no outgoing calls
no test coverage detected