summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/marker-variable-ref.html
blob: d2ea847faf6fd14a86c5395ddc2d989804bd2db3 (plain)
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
30
31
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <link rel="author" title="Karl Dubost" href="https://github.com/karlcow" />
    <link
      rel="help"
      href="https://drafts.csswg.org/css-pseudo/#marker-pseudo"
    />
    <link
      rel="help"
      href="https://drafts.csswg.org/css-variables/#defining-variables"
    />
    <title>::marker with variables</title>
    <style>
      .firstTest::marker {
        color: rgb(255 119 0 / 0.75);
      }

      .secondTest::marker {
        color: rgb(255 119 0);
      }
    </style>
  </head>
  <body>
    <ul>
      <li class="firstTest">Item 1</li>
      <li class="secondTest">Item 2</li>
    </ul>
  </body>
</html>