a element with no href
		
			- element
- element with aria-label
- element with title
-  empty element with title
- element with aria-label and title
Suggested announcement
		
			- "element"
- "test label"
- "element with title, test description"
- "test label"
- "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