a element with no href

  1. element
  2. element with aria-label
  3. element with title
  4. empty element with title
  5. element with aria-label and title

Suggested announcement

  1. "element"
  2. "test label"
  3. "element with title, test description"
  4. "test label"
  5. "test label, test description"

Code

<ol>
<li><a name="test1" id="test1">element</a></li>
<li><a name="test2" id="test2" aria-label="test label">element with aria-label</a></li>
<li><a name="test3" id="test3" title="test description">element with title</a></li>
<li><a name="test4" id="test4" title="test label"></a> empty element with title</li>
<li><a name="test4" id="test4" aria-label="test label" title="test description">element with aria-label and title</a></li>
</ol>

Reference

HTML5 a element