blob: c50ee33ae91863704eeab8d5c7ac89d804ed7d25 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<!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://w3c.github.io/csswg-drafts/css-pseudo/#marker-pseudo" />
<link rel="help" href="https://w3c.github.io/csswg-drafts/css-variables/#defining-variables" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<title>::marker with variables</title>
<style>
.firstTest::marker {
--alpha: 0.75;
color: rgba(0 128 0 / var(--alpha));
}
.secondTest::marker {
--color: rgb(0 128 0);
color: var(--color);
}
</style>
</head>
<body>
<ul>
<li class="firstTest">Item 1</li>
<li class="secondTest">Item 2</li>
</ul>
<script>
test(() => {
let firstTest = document.querySelector('.firstTest');
let markerStyle = getComputedStyle(firstTest, '::marker');
assert_equals(markerStyle.color, "rgba(0, 128, 0, 0.75)", "color is green with 0.75 opacity.");
}, `getComputedStyle() for opacity defined by variable in ::marker`);
test(() => {
let secondTest = document.querySelector('.secondTest');
let markerStyle = getComputedStyle(secondTest, '::marker');
assert_equals(markerStyle.color, "rgb(0, 128, 0)", "color is green.");
}, `getComputedStyle() for color defined by variable in ::marker`);
</script>
</body>
</html>
|