aboutsummaryrefslogtreecommitdiff
path: root/guidelines/WCAG-1.0/test5.html
blob: 8700531f23eb8e485439a24fd47a6fb3d88311d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<html>
  <head>
    <title>Test 5</title>
    <style type="txt/css">
      table { border: 2px solid black; }
    </style>
  </head>
  <body>

  Hello World!

  <!-- expect caption/title failure, summary failure, headers failure -->
  <table>
    <tbody>
    <tr><td>A first row that's not a header</td><td>Another col</td></tr>
    <tr><td>A first row that's not a header</td><td>Another col</td></tr>
    </tbody></table>

  Hello Wisconsin!

  <!-- expect headers failure -->
  <table title='some table' summary='summary of a table'>
    <tbody>
    <tr><td>WI</td> <td>A first row that's not a header</td><td>Another col</td></tr>
    <tr><td>WI</td> <td>A first row that's not a header</td><td>Another col</td></tr>
    </tbody></table>

  Hello Oregon!

  <!-- expect no failures-->
  <table title='some table with headers' summary='summary of a table with headers'>
    <caption>A mighty good table</caption>
    <tbody>
    <tr><th>State</th> <th>head 1</th> <th>head 2</th></tr>
    <tr><td>OR</td> <td>A first row that's not a header</td> <td>Another col</td></tr>
    <tr><td>OR</td> <td>A first row that's not a header</td> <td>Another col</td></tr>
    </tbody></table>

  <!-- expect 4 failures -->
</body></html>