blob: a2e3f09cb013af454dc6e0ed6ae5d05e60b6045c [file] [log] [blame]
<script>
internals.settings.setCSSVariablesEnabled(true);
</script>
<style>
body {
-webkit-var-foreground: green;
-webkit-var-background: rgb(255, 255, 255);
}
div {
color: -webkit-var(foreground);
background-color: red;
background-color: -webkit-var(background);
}
</style>
<div>
This text should be green on a white background. There should be no red visible.
</div>