diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2017-08-17 20:56:20 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-03-12 09:46:33 +0100 |
commit | 76e1c016a32cb8cee6f5a0a0012fe512570da1eb (patch) | |
tree | 7a79d54176b7a748e1649d11ad47d561660d04ca /layout/base/nsLayoutUtils.h | |
parent | 920519e7c56a08f743e5230e8db30f635f5f7cf5 (diff) | |
download | UXP-76e1c016a32cb8cee6f5a0a0012fe512570da1eb.tar UXP-76e1c016a32cb8cee6f5a0a0012fe512570da1eb.tar.gz UXP-76e1c016a32cb8cee6f5a0a0012fe512570da1eb.tar.lz UXP-76e1c016a32cb8cee6f5a0a0012fe512570da1eb.tar.xz UXP-76e1c016a32cb8cee6f5a0a0012fe512570da1eb.zip |
CSS - Grid - transferred min-size contribution of percentage size grid item with an intrinsic ratio
Diffstat (limited to 'layout/base/nsLayoutUtils.h')
-rw-r--r-- | layout/base/nsLayoutUtils.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/layout/base/nsLayoutUtils.h b/layout/base/nsLayoutUtils.h index d9580a3df..97fc410b0 100644 --- a/layout/base/nsLayoutUtils.h +++ b/layout/base/nsLayoutUtils.h @@ -1378,6 +1378,10 @@ public: * width, its 'width', 'min-width', and 'max-width' properties (or 'height' * variations if that's what matches aAxis) and its padding, border and margin * in the corresponding dimension. + * @param aPercentageBasis an optional percentage basis (in aFrame's WM). + * Pass NS_UNCONSTRAINEDSIZE if the basis is indefinite in either/both axes. + * If you pass Nothing() a percentage basis will be calculated from aFrame's + * ancestors' computed size in the relevant axis, if needed. * @param aMarginBoxMinSizeClamp make the result fit within this margin-box * size by reducing the *content size* (flooring at zero). This is used for: * https://drafts.csswg.org/css-grid/#min-size-auto @@ -1396,6 +1400,7 @@ public: nsRenderingContext* aRenderingContext, nsIFrame* aFrame, IntrinsicISizeType aType, + const mozilla::Maybe<mozilla::LogicalSize>& aPercentageBasis = mozilla::Nothing(), uint32_t aFlags = 0, nscoord aMarginBoxMinSizeClamp = NS_MAXSIZE); /** |