summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-variables/variables-ruletree-cache-01.html
blob: 880af6dce268b104721e023fd892da9ffc44618b (plain)
1
2
3
4
5
6
7
8
<!DOCTYPE html>
<style>
  p { --foo: purple; background-color: var(--foo) }
  p#myid { --foo: blue }
</style>
<p>This should be purple, and might cache background in the rule tree.</p>
<p id="myid">This should be blue, and can't used that cached struct,
which really shouldn't be cached anyway.</p>