| OLD | NEW |
| 1 <style> | 1 <style> |
| 2 body { | 2 body { |
| 3 -webkit-var-foreground: green; | 3 var-foreground: green; |
| 4 -webkit-var-background: rgb(255, 255, 255); | 4 var-background: rgb(255, 255, 255); |
| 5 } | 5 } |
| 6 div { | 6 div { |
| 7 color: -webkit-var(foreground); | 7 color: var(foreground); |
| 8 background-color: red; | 8 background-color: red; |
| 9 background-color: -webkit-var(background); | 9 background-color: var(background); |
| 10 } | 10 } |
| 11 </style> | 11 </style> |
| 12 <div> | 12 <div> |
| 13 This text should be green on a white background. There should be no red visible. | 13 This text should be green on a white background. There should be no red visible. |
| 14 </div> | 14 </div> |
| OLD | NEW |