You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This means that when pally-ci runs it's tests, it does not see the any non-compliant CSS. An example might be:
<style>
@media (prefers-color-scheme: dark) {
.prefers {
background: black;
color: black;
}
}
</style>
<div class="prefers">
I "prefer" a black background, and black text, that nobody can read!
</div>
Is this a feature that will be added to pa11y?
The text was updated successfully, but these errors were encountered:
HTML code sniffer, which is what PA11y uses for these rules, does not appear to support the CSS @media rule:
@media (prefers-color-scheme: dark) {}
More details here: https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme
This means that when pally-ci runs it's tests, it does not see the any non-compliant CSS. An example might be:
Is this a feature that will be added to pa11y?
The text was updated successfully, but these errors were encountered: