Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upImplement support for CSS 2.1 'white-space' property #80
Comments
|
You might want to just go ahead and plan on implementing the setup from http://dev.w3.org/csswg/css3-text/ which is a bit more complicated... |
|
This functionality belongs in |
|
AFAIK, the existing compression modes could be used to support all the CSS 'whitespace' values. This was implemented in f5a5f35. There are several followup issues for the corner cases and stubbed features. |
glennw
added a commit
to glennw/servo
that referenced
this issue
Jan 16, 2017
Implement tessellation for large border radii.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://www.w3.org/TR/CSS2/text.html#propdef-white-space
This property controls how whitespace (spaces, tabs, line breaks) are treated by layout. The property values are permutations of different settings for space and line breaks, and is not hard to implement.
For now, the case of 'normal' can be implemented without waiting for the
white-spaceproperty to be supported by the CSS parser.