gecko/layout/reftests/css-variables/variables-ruletree-cache-02.html
2013-12-12 13:09:47 +11:00

9 lines
216 B
HTML

<!DOCTYPE html>
<style>
div#a { var-foo: purple }
div#b { var-foo: blue }
p { background-color: var(foo) }
</style>
<div id="a"><p>This should be purple.</p></div>
<div id="b"><p>This should be blue.</p></div>