Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make F73 less shouty #3814

Merged
merged 1 commit into from
May 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions techniques/failures/F73.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<!DOCTYPE html><html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"><head><title>Failure of Success Criterion 1.4.1 due to creating links that are not visually evident without color vision</title><link rel="stylesheet" type="text/css" href="../../css/editors.css" class="remove"/></head><body><h1>Failure of Success Criterion 1.4.1 due to creating links that are not visually evident without color vision</h1><section class="meta"><p class="id">ID: F73</p><p class="technology">Technology: failures</p><p class="type">Type: Failure</p></section><section id="applicability"><h2>When to Use</h2>
<p>Any technology.</p>
</section><section id="description"><h2>Description</h2>
<p>The objective of this failure is to avoid situations in which people who cannot perceive color differences cannot identify links (when people with color vision can identify links). Link underlines or some other non-color visual distinction are required (when the links are discernible to those with color vision). </p>
<p>The objective of this failure is to avoid situations in which people who cannot perceive color differences cannot identify links (when people with color vision can identify links). Link underlines or some other non-color visual distinction are required (when the links are discernible to those with color vision).</p>
<p>While some links may be visually evident from page design and context, such as navigational links, links within text are often visually understood only from their own display attributes. Removing the underline and leaving only the color difference for such links would be a failure because there would be no other visual indication (besides color) that it is a link.</p>
<div class="note">
<p>Red and Pink are the same color (hue) but they have different lightness (which is not color ). So red and pink would pass the requirement for "not distinguished by color (hue) alone" since they differ by lightness (which is not color) - as long as the difference in lightness (contrast) is 3:1 or greater. For example, if surrounding text is RED and the link is PINK it would pass. Similarly a light green and a dark red differ BOTH by color AND by lightness so they would pass if the contrast (lightness) difference is 3:1 or greater before focus or pointing.</p>
<p>Red and pink are the same color (hue) but they have different lightness (which is not color). So red and pink would pass the requirement for "not distinguished by color (hue) alone" since they differ by lightness (which is not color) - as long as the difference in lightness (contrast) is 3:1 or greater. For example, if surrounding text is red and the link is pink it would pass. Similarly a light green and a dark red differ <strong>both</strong> by color <strong>and</strong> by lightness so they would pass if the contrast (lightness) difference is 3:1 or greater before focus or pointing.</p>
<p>There is no requirement that links be identifiable by people who cannot perceive color if they are not perceivable for those with color vision. (e.g. if the links are hidden for everyone – as in a game or test).</p>
<p>If the non-color cue only happens when the mouse hovers over the link or when the link receives focus, it is still a failure.</p>
<p>If the link is a different color and bold it would not fail because the boldness is not color dependent.</p>
Expand All @@ -28,14 +28,13 @@ <h3>Removing the underline from a link in a sentence or paragraph without provid
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;p&gt;There are many resources to find out more about the
&lt;a href="rain-in-spain.html"&gt;rain in spain&lt;/a&gt;.
&lt;p&gt;There are many resources to find out more about the
&lt;a href="rain-in-spain.html"&gt;rain in Spain&lt;/a&gt;.
&lt;/p&gt;
&lt;/body&gt;</code></pre>

<div class="note">
<p>If the visual cue is only provided on hover (as in the example above), it would still fail.
</p>
<p>If the visual cue is only provided on hover (as in the example above), it would still fail.</p>
</div>

</section>
Expand Down