Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/bugs/reftest.list
<!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>