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

content / test / data / accessibility / css / pseudo-element-alternative-text.html [blame]

<!--
-->
<!DOCTYPE html>
<html>
<head>
  <style>
    #parent::before {
      content: url(bullet.png) / "alternative text";
    }
    #parent::after {
      content: url(bullet.png) / "";
    }
  </style>
</head>
<body>
  <div id="parent">
    <span class="before">DOM text</span>
  </div>
</body>
</html>