From 9bc35b9505f00cf59285029883e16ed9b3740325 Mon Sep 17 00:00:00 2001 From: patrickhlauke Date: Tue, 26 Dec 2017 12:24:13 +0000 Subject: [PATCH] Content tweaks --- presentation/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/presentation/index.html b/presentation/index.html index eefa16e..10b8302 100644 --- a/presentation/index.html +++ b/presentation/index.html @@ -552,7 +552,7 @@

using WAI-ARIA in HTML

All interactive widgets must be focusable and scripted to respond to standard key strokes or key stroke combinations where applicable. [...]

-

Refer to the keyboard and structural navigation and design patterns sections of the WAI-ARIA 1.0 Authoring Practices

+

Refer to the keyboard and structural navigation and design patterns sections of the WAI-ARIA 1.0 Authoring Practices

@@ -1609,7 +1609,7 @@

keyboard navigation within widgets

<!-- activedescendant example -->
-<div role="radiogroup" tabindex="0" aria-activedescendant="rad1" >
+<div role="radiogroup" tabindex="0" aria-activedescendant="rad1">
   <div role="radio" id="rad1" aria-checked="true" ...> ...
   <div role="radio" id="rad2" aria-checked="false" ...> ...
   <div role="radio" id="rad3" aria-checked="false" ...> ...
@@ -1621,7 +1621,7 @@ 

keyboard navigation within widgets

<!-- activedescendant example -->
-<div role="radiogroup" tabindex="0" aria-activedescendant="rad2" >
+<div role="radiogroup" tabindex="0" aria-activedescendant="rad2">
   <div role="radio" id="rad1" aria-checked="false" ...> ...
   <div role="radio" id="rad2" aria-checked="true" ...> ...
   <div role="radio" id="rad3" aria-checked="false" ...> ...