fune/testing/web-platform/tests/css/css-pseudo/marker-variable.html
Tim Nguyen ac45bb0312 Bug 1834427 [wpt PR 40148] - Replace w3c.github.io/csswg-drafts links with drafts.csswg.org, a=testonly
Automatic update from web-platform-tests
Replace w3c.github.io/csswg-drafts links with drafts.csswg.org (#40148)

--

wpt-commits: 57c5006103146974adb3af50d325c3b6ce7153d0
wpt-pr: 40148
2023-06-09 09:24:03 +00:00

30 lines
No EOL
739 B
HTML

<!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" />
<link rel="match" href="marker-variable-ref.html">
<title>::marker with variables</title>
<style>
.firstTest::marker {
--alpha: 0.75;
color: rgb(255 119 0 / var(--alpha));
}
.secondTest::marker {
--color: rgb(255 119 0);
color: var(--color);
}
</style>
</head>
<body>
<ul>
<li class="firstTest">Item 1</li>
<li class="secondTest">Item 2</li>
</ul>
</body>
</html>