Expose getters and setters for some new properties #192
Reference in New Issue
Block a user
No description provided.
Delete Branch "rigdern/expose-props"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
PR #185 added support for some new properties. We forgot to include getters/setters for these properties in some of the languages. This PR fixes that.
The properties include overflow and min/max height/width.
Is min/max actually spec compliant? If yes, this would be huge! A lot of people have been waiting for that.
@vjeux it is not fully spec compliant. When resolving min/max sizes, section 9.7.4 of the spec calls for n passes whereas this only does 2 passes. The 2 pass approach was borrowed from code that was in css-layout prior to PR #185.
I'm not familiar with how well the min/max implementation worked prior to PR #185. However, the current implementation has worked very well for our app.
Thank you!