sitespeed.io/docs/testcases/accessibility/table.html

41 lines
458 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Table with missing TH and caption.</title>
</head>
<body>
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<table>
<caption>Monthly</caption>
<TR>
<th>Month</th>
<th>Savings</th>
</TR>
<TR>
<td>January</td>
<td>$100</td>
</TR>
</table>
<table>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
</body>
</html>