Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1160)

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutBlockFlow.h

Issue 1460203003: Add marginBeforeIfFloating() to LayoutBlockFlow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2007 David Smith (catfish.man@gmail.com) 4 * (C) 2007 David Smith (catfish.man@gmail.com)
5 * Copyright (C) 2003-2013 Apple Inc. All rights reserved. 5 * Copyright (C) 2003-2013 Apple Inc. All rights reserved.
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
7 * Copyright (C) 2013 Google Inc. All rights reserved. 7 * Copyright (C) 2013 Google Inc. All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are 10 * modification, are permitted provided that the following conditions are
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 m_rareData->m_discardMarginBefore = false; 509 m_rareData->m_discardMarginBefore = false;
510 m_rareData->m_discardMarginAfter = false; 510 m_rareData->m_discardMarginAfter = false;
511 } 511 }
512 } 512 }
513 513
514 virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const; 514 virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const;
515 private: 515 private:
516 LayoutUnit collapsedMarginBefore() const final { return maxPositiveMarginBef ore() - maxNegativeMarginBefore(); } 516 LayoutUnit collapsedMarginBefore() const final { return maxPositiveMarginBef ore() - maxNegativeMarginBefore(); }
517 LayoutUnit collapsedMarginAfter() const final { return maxPositiveMarginAfte r() - maxNegativeMarginAfter(); } 517 LayoutUnit collapsedMarginAfter() const final { return maxPositiveMarginAfte r() - maxNegativeMarginAfter(); }
518 518
519 // Floats' margins do not collapse with page or column boundaries, and we th erefore need to
520 // treat them specially in some cases.
521 LayoutUnit marginBeforeIfFloating() const { return isFloating() ? marginBefo re() : LayoutUnit(); }
522
519 LayoutUnit collapseMargins(LayoutBox& child, MarginInfo&, bool childIsSelfCo llapsing, bool childDiscardMarginBefore, bool childDiscardMarginAfter); 523 LayoutUnit collapseMargins(LayoutBox& child, MarginInfo&, bool childIsSelfCo llapsing, bool childDiscardMarginBefore, bool childDiscardMarginAfter);
520 LayoutUnit clearFloatsIfNeeded(LayoutBox& child, MarginInfo&, LayoutUnit old TopPosMargin, LayoutUnit oldTopNegMargin, LayoutUnit yPos, bool childIsSelfColla psing, bool childDiscardMargin); 524 LayoutUnit clearFloatsIfNeeded(LayoutBox& child, MarginInfo&, LayoutUnit old TopPosMargin, LayoutUnit oldTopNegMargin, LayoutUnit yPos, bool childIsSelfColla psing, bool childDiscardMargin);
521 LayoutUnit estimateLogicalTopPosition(LayoutBox& child, const MarginInfo&, L ayoutUnit& estimateWithoutPagination); 525 LayoutUnit estimateLogicalTopPosition(LayoutBox& child, const MarginInfo&, L ayoutUnit& estimateWithoutPagination);
522 void marginBeforeEstimateForChild(LayoutBox&, LayoutUnit&, LayoutUnit&, bool &) const; 526 void marginBeforeEstimateForChild(LayoutBox&, LayoutUnit&, LayoutUnit&, bool &) const;
523 void handleAfterSideOfBlock(LayoutBox* lastChild, LayoutUnit top, LayoutUnit bottom, MarginInfo&); 527 void handleAfterSideOfBlock(LayoutBox* lastChild, LayoutUnit top, LayoutUnit bottom, MarginInfo&);
524 void setCollapsedBottomMargin(const MarginInfo&); 528 void setCollapsedBottomMargin(const MarginInfo&);
525 529
526 LayoutUnit applyBeforeBreak(LayoutBox& child, LayoutUnit logicalOffset); // If the child has a before break, then return a new yPos that shifts to the top o f the next page/column. 530 LayoutUnit applyBeforeBreak(LayoutBox& child, LayoutUnit logicalOffset); // If the child has a before break, then return a new yPos that shifts to the top o f the next page/column.
527 LayoutUnit applyAfterBreak(LayoutBox& child, LayoutUnit logicalOffset, Margi nInfo&); // If the child has an after break, then return a new offset that shift s to the top of the next page/column. 531 LayoutUnit applyAfterBreak(LayoutBox& child, LayoutUnit logicalOffset, Margi nInfo&); // If the child has an after break, then return a new offset that shift s to the top of the next page/column.
528 532
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 589
586 // END METHODS DEFINED IN LayoutBlockFlowLine 590 // END METHODS DEFINED IN LayoutBlockFlowLine
587 591
588 }; 592 };
589 593
590 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlockFlow, isLayoutBlockFlow()); 594 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlockFlow, isLayoutBlockFlow());
591 595
592 } // namespace blink 596 } // namespace blink
593 597
594 #endif // LayoutBlockFlow_h 598 #endif // LayoutBlockFlow_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698