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.

24 lines
600 B

2 years ago
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.hasPointerEvents = hasPointerEvents;
var _helpers = require("@testing-library/dom/dist/helpers");
function hasPointerEvents(element) {
const window = (0, _helpers.getWindowFromNode)(element);
for (let el = element; (_el = el) != null && _el.ownerDocument; el = el.parentElement) {
var _el;
const pointerEvents = window.getComputedStyle(el).pointerEvents;
if (pointerEvents && !['inherit', 'unset'].includes(pointerEvents)) {
return pointerEvents !== 'none';
}
}
return true;
}