Skip to content

Commit

Permalink
Content tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhlauke committed Dec 26, 2017
1 parent 686df55 commit 9bc35b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions presentation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ <h2>using <strong>WAI-ARIA</strong> in HTML</h2>

<section class="slide listing"><div>
<p>All interactive widgets must be focusable and scripted to respond to standard key strokes or key stroke combinations where applicable. [...]</p>
<p>Refer to the <a target=_blank href="http://www.w3.org/WAI/PF/aria-practices/#keyboard">keyboard and structural navigation</a> and <a target=_blank href="http://www.w3.org/WAI/PF/aria-practices/#aria_ex">design patterns</a> sections of the <a target=_blank href="http://www.w3.org/WAI/PF/aria-practices/"><abbr title="Accessible Rich Internet Applications">WAI-ARIA</abbr> 1.0 Authoring Practices</a></p>
<p>Refer to the <a target=_blank href="http://www.w3.org/WAI/PF/aria-practices/#keyboard">keyboard and structural navigation</a> and <a target=_blank href="http://www.w3.org/WAI/PF/aria-practices/#aria_ex">design patterns</a> sections of the <a target=_blank href="http://www.w3.org/WAI/PF/aria-practices/">WAI-ARIA 1.0 Authoring Practices</a></p>
</div></section>

<!-- -->
Expand Down Expand Up @@ -1609,7 +1609,7 @@ <h4>keyboard navigation within widgets</h4>

<section class="slide code listing"><div>
<pre><code>&lt;!-- activedescendant example --&gt;
&lt;div role="radiogroup" <mark>tabindex="0"</mark> <mark>aria-activedescendant="rad1"</mark> &gt;
&lt;div role="radiogroup" <mark>tabindex="0"</mark> <mark>aria-activedescendant="rad1"</mark>&gt;
&lt;div role="radio" <mark>id="rad1"</mark> <mark>aria-checked="true"</mark> ...&gt; ...
&lt;div role="radio" id="rad2" aria-checked="false" ...&gt; ...
&lt;div role="radio" id="rad3" aria-checked="false" ...&gt; ...
Expand All @@ -1621,7 +1621,7 @@ <h4>keyboard navigation within widgets</h4>

<section class="slide code listing"><div>
<pre><code>&lt;!-- activedescendant example --&gt;
&lt;div role="radiogroup" <mark>tabindex="0"</mark> <mark>aria-activedescendant="rad2"</mark> &gt;
&lt;div role="radiogroup" <mark>tabindex="0"</mark> <mark>aria-activedescendant="rad2"</mark>&gt;
&lt;div role="radio" id="rad1" aria-checked="false" ...&gt; ...
&lt;div role="radio" <mark>id="rad2"</mark> <mark>aria-checked="true"</mark> ...&gt; ...
&lt;div role="radio" id="rad3" aria-checked="false" ...&gt; ...
Expand Down

0 comments on commit 9bc35b9

Please sign in to comment.