blob: 5182dd8d0fbd968bff3931a0a32884d7aa4cf6f2 [file] [log] [blame]
<!DOCTYPE html>
<html class="reftest-wait">
<title>currentColor in color-mix() used in border repaints properly when parent color changes</title>
<link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
<link rel="help" href="https://drafts.csswg.org/css-color/#currentcolor-color">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<style>
#container {
color: red;
}
#container.green {
color: green;
}
#target {
border: 50px solid color-mix(in hsl, transparent 0%, currentColor 100%);
width: 0;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="container">
<div id="target"></div>
</div>
<script>
addEventListener("load", () => {
setTimeout(() => {
requestAnimationFrame(() => {
container.classList.add("green");
document.documentElement.classList.remove("reftest-wait");
});
}, 0);
});
</script>
</html>