| Summary: | min-width/height should default to auto for grid items | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Sergio Villar Senin <svillar> | ||||||
| Component: | CSS | Assignee: | Sergio Villar Senin <svillar> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | commit-queue, darin, esprehn+autocc, fpizlo, glenn, hyatt, jfernandez, kling, kondapallykalyan, rego, svillar, zalan | ||||||
| Priority: | P2 | Keywords: | BlinkMergeCandidate | ||||||
| Version: | 528+ (Nightly build) | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Unspecified | ||||||||
| Bug Depends on: | 146020 | ||||||||
| Bug Blocks: | 146018 | ||||||||
| Attachments: |
|
||||||||
|
Description
Sergio Villar Senin
2015-06-16 08:43:39 PDT
We need to merge the following Blink changes: - https://crrev.com/194408 - https://crrev.com/194863 - https://crrev.com/194887 (partially) (In reply to comment #2) > Also this one > https://src.chromium.org/viewvc/blink?view=revision&revision=201797 We'll merge that later once we have the alignment logic in place. Created attachment 260852 [details]
Patch
Created attachment 261005 [details]
Rebased patch
Comment on attachment 261005 [details] Rebased patch View in context: https://bugs.webkit.org/attachment.cgi?id=261005&action=review > Source/WebCore/rendering/RenderBox.cpp:2757 > + if (Optional<LayoutUnit> minContentHeight = computeContentLogicalHeight(MinSize, Length(MinContent), computedValues.m_extent - borderAndPaddingLogicalHeight())) > + contentHeight = std::max(contentHeight, constrainLogicalHeightByMinMax(minContentHeight.value(), computedValues.m_extent - borderAndPaddingLogicalHeight())); Put the repeated expression computedValues.m_extent - borderAndPaddingLogicalHeight() into a local variable? Might also want to use auto instead of explicitly stating Optional<LayoutUnit>. Comment on attachment 261005 [details] Rebased patch View in context: https://bugs.webkit.org/attachment.cgi?id=261005&action=review >> Source/WebCore/rendering/RenderBox.cpp:2757 >> + contentHeight = std::max(contentHeight, constrainLogicalHeightByMinMax(minContentHeight.value(), computedValues.m_extent - borderAndPaddingLogicalHeight())); > > Put the repeated expression computedValues.m_extent - borderAndPaddingLogicalHeight() into a local variable? > > Might also want to use auto instead of explicitly stating Optional<LayoutUnit>. Sure, I'll do. Committed r189708: <http://trac.webkit.org/changeset/189708> |