Content | Inline | With ARIA | Title + Description (2 values in aria-labelledby)
Screen reader outputs “red square, a plain red square defined at 50 pixels length and height, image” or similar.
Working Example
Code
<svg version="1.1" width="50" height="50" role="img" aria-labelledby="title-2 desc-2">
<title id="title-2">red square</title>
<desc id="desc-2">A plain red square defined at 50 pixels length and height.</desc>
<rect width="50" height="50" fill="#cc0000" />
</svg>
Nil
Nil