Content | Inline | With ARIA | Title + Description
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-1" aria-describedby="desc-1">
<title id="title-1">red square</title>
<desc id="desc-1">A plain red square defined at 50 pixels length and height.</desc>
<rect width="50" height="50" fill="#cc0000" />
</svg>
Nil
Nil