1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18

content / test / data / accessibility / html / figcaption.html [blame]

<!--
@UIA-WIN-ALLOW:ControlType='UIA_TextControlTypeId'
-->
<!DOCTYPE html>
<html>
<body>
<figure>
  <img src="greenbox.png" alt="This is a green box.">
  <figcaption>Fig.1 - A green Box</figcaption>
</figure>

<!-- aria-details="" prevents automatic computation of details relation -->
<figure aria-details="">
  <img src="greenbox.png" alt="This is a blue box.">
  <figcaption>Fig.2 - A blue Box</figcaption>
</figure>
</body>
</html>