- From: Boris Zbarsky <bzbarsky@mit.edu>
- Date: Tue, 02 Jun 2015 14:16:31 -0400
- To: Marat Tanalin <mtanalin@yandex.ru>, "www-style@w3.org" <www-style@w3.org>
On 6/2/15 2:14 PM, Marat Tanalin wrote: > a: var(b); > b: var(a); > > If we need to get the value of the `a` property, then we should then access `b` property referenced with `var(b)`. So we have "a, b" order. > > If we need to get the value of the `b` property, then we should then access `a` property referenced with `var(a)`. So we have "b, a" order. OK, what happens with: a: var(b); b: var(c); d: var(e); e: color; Does it depend on the nesting depth? Does it depend on whether a or b is computed "first"? -Boris
Received on Tuesday, 2 June 2015 18:17:02 UTC