You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
349 B

2 months ago
  1. // @flow
  2. import getComputedStyle from './getComputedStyle';
  3. export default function isScrollParent(element: HTMLElement): boolean {
  4. // Firefox wants us to check `-x` and `-y` variations as well
  5. const { overflow, overflowX, overflowY } = getComputedStyle(element);
  6. return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX);
  7. }