Skip to content

Commit

Permalink
update the rule #1676
Browse files Browse the repository at this point in the history
  • Loading branch information
shunguoy committed Oct 9, 2023
1 parent ca57d01 commit 478f7a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export let element_tabbable_unobscured: Rule = {
}
if (bnds.height !== 0 && bnds.width !== 0
&& bnds.top <= bounds.top && bnds.left <= bounds.left && bnds.top + bnds.height >= bounds.top + bounds.height
&& bnds.left + bnds.height >= bounds.left + bounds.width && parseInt(zindex) <= parseInt(z_index))
&& bnds.left + bnds.height >= bounds.left + bounds.width && parseInt(zindex) < parseInt(z_index))
violations.push(elem);
}
});
Expand Down

0 comments on commit 478f7a7

Please sign in to comment.