Bug 107738
Summary: | [CSS Grid Layout] Handle min-content and max-content when the grid item has an orthogonal writing mode | ||
---|---|---|---|
Product: | WebKit | Reporter: | Julien Chaffraix <jchaffraix> |
Component: | Layout and Rendering | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED DUPLICATE | ||
Severity: | Normal | CC: | jfernandez, ojan, tony, xan.lopez |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | All | ||
OS: | All | ||
Bug Depends on: | |||
Bug Blocks: | 103311 |
Julien Chaffraix
Currently minContentForChild and maxContentForChild have the following code:
bool hasOrthogonalWritingMode = child->isHorizontalWritingMode() != isHorizontalWritingMode();
// FIXME: Properly support orthogonal writing mode.
if (hasOrthogonalWritingMode)
return 0;
Orthogonal writing mode needs to be handled in these functions. Most importantly, we need to had writing mode coverage to min-content / max-content tests.
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Julien Chaffraix
Filed a general question about how to solve the question of orthogonal writing-mode on grid items as the specification is missing this part: http://lists.w3.org/Archives/Public/www-style/2013Jan/0418.html
Javier Fernandez
*** This bug has been marked as a duplicate of bug 159295 ***