aboutsummaryrefslogtreecommitdiff
path: root/guidelines/WCAG-1.0/test5.html
diff options
context:
space:
mode:
Diffstat (limited to 'guidelines/WCAG-1.0/test5.html')
-rw-r--r--guidelines/WCAG-1.0/test5.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/guidelines/WCAG-1.0/test5.html b/guidelines/WCAG-1.0/test5.html
new file mode 100644
index 0000000..8700531
--- /dev/null
+++ b/guidelines/WCAG-1.0/test5.html
@@ -0,0 +1,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>