summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-lists/list-type-none-style-image.html
blob: 6b7b83afc38b2395f5725a64fc40053b6d0b6859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
  <head>
    <title>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">
    <link rel="help" href="https://www.w3.org/TR/CSS2/generate.html#propdef-list-style-image">
    <link rel="match" href="list-type-none-style-image-ref.html">
    <style>
      ul {
        list-style-type: none;
      }
      li {
        list-style-image: url('../../images/green-16x16.png');
      }
    </style>
  </head>
  <body>
    <ul>
      <li>Should have a green square list marker.</li>
    </ul>
  </body>
</html>