(el, x)
| 671 | } |
| 672 | // typically for <body> and <html> |
| 673 | function overflowNotHidden(el, x) { |
| 674 | return computedOverflow(el, x) != "hidden"; |
| 675 | } |
| 676 | // for all other elements |
| 677 | function overflowAutoOrScroll(el, x) { |
| 678 | return /^(scroll|auto)$/.test(computedOverflow(el, x)); |
no test coverage detected