chromium/third_party/blink/web_tests/external/wpt/css/css-lists/list-type-none-style-image-ref.html

<!DOCTYPE html>
<html>
  <head>
    <title>Reference: CSS Lists: 'list-style-image' takes precedence over 'list-style-type: none'</title>
    <link rel="author" title="Emil A Eklund" href="mailto:[email protected]">
    <style>
      li {
        list-style-image: url('../../images/green-16x16.png');
      }
      ::marker {
        font-family: inherit;
      }
    </style>
  </head>
  <body>
    <ul>
      <li>Should have a green square list marker.</li>
    </ul>
  </body>
</html>