In order to be accessible to visually impaired users, it is important that tables have a caption briefly describing its contents.

The following code:

<table>                                                         <!-- Non-Compliant -->
  ...
<table>

should be refactored into:

<table>                                                         <!-- Compliant -->
  <caption>New York City Marathon Results 2013</caption>
  ...
<table>