fune/testing/web-platform/tests/css/css-pseudo/marker-variable-ref.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

31 lines
701 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"
/>
<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>