gecko/layout/reftests/css-variables/variables-ruletree-cache-02.html

9 lines
214 B
HTML
Raw Normal View History

2013-12-11 18:09:47 -08:00
<!DOCTYPE html>
<style>
div#a { --foo: purple }
div#b { --foo: blue }
p { background-color: var(--foo) }
2013-12-11 18:09:47 -08:00
</style>
<div id="a"><p>This should be purple.</p></div>
<div id="b"><p>This should be blue.</p></div>