Summary: | [css-grid] Remove unneeded lines in offsetAndBreadthForPositionedChild() | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Manuel Rego Casasnovas <rego> | ||||||
Component: | Layout and Rendering | Assignee: | Manuel Rego Casasnovas <rego> | ||||||
Status: | RESOLVED FIXED | ||||||||
Severity: | Normal | CC: | commit-queue, esprehn+autocc, glenn, jfernandez, kondapallykalyan, rego, simon.fraser, svillar | ||||||
Priority: | P2 | ||||||||
Version: | WebKit Nightly Build | ||||||||
Hardware: | Unspecified | ||||||||
OS: | Unspecified | ||||||||
Bug Depends on: | |||||||||
Bug Blocks: | 60731 | ||||||||
Attachments: |
|
Description
Manuel Rego Casasnovas
2016-03-23 04:42:08 PDT
Created attachment 274744 [details]
Patch
Comment on attachment 274744 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=274744&action=review > Source/WebCore/rendering/RenderGrid.cpp:1520 > + LayoutUnit start = startIsAuto ? LayoutUnit() : isRowAxis ? m_columnPositions[startLine] : m_rowPositions[startLine]; Mind adding parens here too. Otherwise it's very difficult to read. Created attachment 275020 [details]
Patch for landing
Thanks for the review. (In reply to comment #2) > Comment on attachment 274744 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=274744&action=review > > > Source/WebCore/rendering/RenderGrid.cpp:1520 > > + LayoutUnit start = startIsAuto ? LayoutUnit() : isRowAxis ? m_columnPositions[startLine] : m_rowPositions[startLine]; > > Mind adding parens here too. Otherwise it's very difficult to read. Done. Comment on attachment 275020 [details] Patch for landing Clearing flags on attachment: 275020 Committed r198732: <http://trac.webkit.org/changeset/198732> All reviewed patches have been landed. Closing bug. |