1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29

content / test / data / accessibility / html / pseudo-element-list-marker.html [blame]

<!--
@BLINK-ALLOW-EMPTY:name=*
@BLINK-ALLOW:nameFrom=*
-->
<!doctype html>
<html>
<head>
  <style>
    li::marker {
      content: '- ';
      font-size: 1.2em;
    }
  </style>

</head>
<body>
  <p>Group known as Mercury Seven:</p>
  <ul>
    <li>Malcolm Scott Carpenter</li>
    <li>Leroy Gordon (Gordo) Cooper Jr.</li>
    <li>John Herschel Glenn Jr.</li>
    <li>Virgil Ivan (Gus) Grissom</li>
    <li>Walter Marty (Wally) Schirra Jr.</li>
    <li>Alan Bartlett Shepard Jr.</li>
    <li>Donald Kent (Deke) Slayton</li>
  </ul>

</body>
</html>