Advertisement
Guest User

teste09.html

a guest
Jul 22nd, 2011
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.37 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html lang="pt-BR">
  3.  
  4. <head>
  5.     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  6.     <title>Teste09: Grid somente leitura usando activedescendant</title>
  7.     <link rel="stylesheet" type="text/css" href="teste09.css">
  8.     <script type="text/javascript" src="teste09.js"></script>
  9. </head>
  10.  
  11. <body role="application">
  12.  
  13. <h1 id="gridDescription">Controle de foco via <code>aria-activedescendant</code></h1>
  14.  
  15. <table id="accessibleGrid" tabindex="0" class="spwGrid" role="grid" aria-describedby="gridDescription">
  16.     <colgroup>
  17.         <col width="100">
  18.         <col width="*">
  19.     </colgroup>
  20.     <thead>
  21.         <tr>
  22.             <th id="header-codigo" role="columnheader">Código</th>
  23.             <th id="header-descricao" role="columnheader">Descrição</th>
  24.         </tr>
  25.     </thead>
  26.     <tbody>
  27.         <tr>
  28.             <td id="cell-00-00" role="gridcell">1</td>
  29.             <td id="cell-00-01" role="gridcell">Administração</td>
  30.         </tr>
  31.         <tr>
  32.             <td id="cell-01-00" role="gridcell">2</td>
  33.             <td id="cell-01-01" role="gridcell">Informática</td>
  34.         </tr>
  35.         <tr>
  36.             <td id="cell-02-00" role="gridcell">3</td>
  37.             <td id="cell-02-01" role="gridcell">Direito civil</td>
  38.         </tr>
  39.     </tbody>
  40. </table>
  41.  
  42. <script type="text/javascript">
  43. window.addEventListener("load", onLoad, false);
  44. </script>
  45.  
  46. </body>
  47.  
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement