gecko-dev/layout/reftests/bugs/1380224-1.html

12 строки
230 B
HTML

<!DOCTYPE html>
<style>
p { color: var(--color); }
</style>
<body style="--color: red" onload="run()">
<p>This text should be green.</p>
<script>
function run() {
document.body.style.setProperty("--color", "green");
}
</script>