[go: nahoru, domu]

blob: 4e4fa20450c2dc2f86963ece4fba1ac18dbf740a [file] [log] [blame]
<!DOCTYPE html>
<html class="reftest-wait">
<title>currentColor used in fill/stroke repaints properly when parent color changes</title>
<link rel="help" href="https://drafts.csswg.org/css-color/#currentcolor-color">
<link rel="match" href="../../css/reference/ref-filled-green-100px-square.xht">
<style>
#container {
color: red;
}
#container.green {
color: green;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="container">
<svg xmlns="http://www.w3.org/2000/svg">
<rect x="25" y="25" width="50" height="50" fill="currentColor" stroke="currentColor" stroke-width="50"/>
</svg>
</div>
<script>
addEventListener("load", () => {
setTimeout(() => {
requestAnimationFrame(() => {
container.classList.add("green");
document.documentElement.classList.remove("reftest-wait");
});
}, 0);
});
</script>
</html>