package.dist.utils.misc.isVisible.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of user-event Show documentation
Show all versions of user-event Show documentation
Fire events the same way the user does
The newest version!
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isVisible = isVisible;
var _helpers = require("@testing-library/dom/dist/helpers");
function isVisible(element) {
const window = (0, _helpers.getWindowFromNode)(element);
for (let el = element; (_el = el) != null && _el.ownerDocument; el = el.parentElement) {
var _el;
const display = window.getComputedStyle(el).display;
if (display === 'none') {
return false;
}
}
return true;
}