- From: Elliott Sprehn <esprehn@gmail.com>
- Date: Wed, 13 Jun 2012 12:20:33 -0700
- To: www-style@w3.org
Received on Wednesday, 13 June 2012 19:27:48 UTC
I'm trying to implement the writing mode width and height keywords in webkit and I realized the equation is backwards in the spec from the one it references. http://dev.w3.org/csswg/css3-writing-modes/#intrinsic-sizing max(min-content, min(max-content, fill-available)) http://www.w3.org/TR/CSS21/visudet.html#float-width min(max(preferred minimum width, available width), preferred width) which seems to be equivalent with the new keywords to: min(max-content, max(min-content, fill-available)) Which is indeed what the code in Webkit currently does for the keyword "intrinsic" (old name for fit-content) and for floats. - Elliott
Received on Wednesday, 13 June 2012 19:27:48 UTC