- From: Tony Chang <tony@chromium.org>
- Date: Tue, 3 Apr 2012 13:54:40 -0700
- To: www-style@w3.org
Received on Tuesday, 3 April 2012 20:55:09 UTC
What should getComputedStyle return when called on the flex property? Here are some examples with my guesses: div.style.flex = 'none'; getComputedStyle(div).flex -> 0 0 auto div.style.flex = '1 2 3px'; getComputedStyle(div).flex -> 1 2 3px div.style.flex = '1 2 50%'; getComputedStyle(div).flex -> 1 2 50% div.style.flex = '1 2 1em'; getComputedStyle(div).flex -> 1 2 16px div.style.flex = '1 2 auto'; getComputedStyle(div).flex -> 1 2 auto Does that seem correct?
Received on Tuesday, 3 April 2012 20:55:09 UTC