summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-lists/list-type-none-style-image-ref.html
blob: e54375fe9b6a899e10317c98a4f42ea87c592285 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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:eae@chromium.org">
    <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>