mark disabled element as interactable (#1175)

This commit is contained in:
LawyZheng
2024-11-12 15:35:08 +08:00
committed by GitHub
parent 46d9dad25b
commit 79bc51ba54

View File

@@ -396,7 +396,7 @@ function isInteractable(element) {
return false;
}
if (isHiddenOrDisabled(element)) {
if (isHidden(element)) {
return false;
}