? book_accessibility_v1.patch
Index: book-navigation.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/book/book-navigation.tpl.php,v
retrieving revision 1.3
diff -u -p -r1.3 book-navigation.tpl.php
--- book-navigation.tpl.php	18 Feb 2009 14:28:21 -0000	1.3
+++ book-navigation.tpl.php	8 Mar 2010 23:25:21 -0000
@@ -36,15 +36,18 @@
 
     <?php if ($has_links): ?>
     <div class="page-links clearfix">
+      <h2 class="element-invisible"><?php print t('Book Navigation'); ?></h2>
+      <ul class="book-navigation-list">
       <?php if ($prev_url) : ?>
-        <a href="<?php print $prev_url; ?>" class="page-previous" title="<?php print t('Go to previous page'); ?>"><?php print t('‹ ') . $prev_title; ?></a>
+        <li><a href="<?php print $prev_url; ?>" class="page-previous" title="<?php print t('Go to previous page'); ?>"><?php print t('‹ ') . $prev_title; ?><span class="element-invisible">(<?php print t('Go to previous page'); ?>)</span></a>
       <?php endif; ?>
       <?php if ($parent_url) : ?>
-        <a href="<?php print $parent_url; ?>" class="page-up" title="<?php print t('Go to parent page'); ?>"><?php print t('up'); ?></a>
+        <li class="book-navigation-list"><a href="<?php print $parent_url; ?>" class="page-up" title="<?php print t('Go to parent page'); ?>"><?php print t('up'); ?><span class="element-invisible">(<?php print t('Go to parent page'); ?>)</span></a>
       <?php endif; ?>
       <?php if ($next_url) : ?>
-        <a href="<?php print $next_url; ?>" class="page-next" title="<?php print t('Go to next page'); ?>"><?php print $next_title . t(' ›'); ?></a>
+        <li><a href="<?php print $next_url; ?>" class="page-next" title="<?php print t('Go to next page'); ?>"><?php print $next_title . t(' ›'); ?><span class="element-invisible">(<?php print t('Go to next page'); ?>)</span></a>
       <?php endif; ?>
+      </ul>
     </div>
     <?php endif; ?>
 
Index: book.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/book/book.css,v
retrieving revision 1.12
diff -u -p -r1.12 book.css
--- book.css	24 Aug 2009 03:11:34 -0000	1.12
+++ book.css	8 Mar 2010 23:25:21 -0000
@@ -28,6 +28,11 @@
   display: block;
   float: right;
 }
+
+li.book-navigation {
+  list-style-type: none; 
+}
+
 #book-outline {
   min-width: 56em;
 }
