diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2017-08-17 20:46:41 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-03-12 09:46:03 +0100 |
commit | 920519e7c56a08f743e5230e8db30f635f5f7cf5 (patch) | |
tree | 376078743552d4dc02226578cfd16083328ae703 /layout/generic/ReflowInput.h | |
parent | 505edf1ba4f6907c236b4876eefea606fa7b9cd0 (diff) | |
download | UXP-920519e7c56a08f743e5230e8db30f635f5f7cf5.tar UXP-920519e7c56a08f743e5230e8db30f635f5f7cf5.tar.gz UXP-920519e7c56a08f743e5230e8db30f635f5f7cf5.tar.lz UXP-920519e7c56a08f743e5230e8db30f635f5f7cf5.tar.xz UXP-920519e7c56a08f743e5230e8db30f635f5f7cf5.zip |
CSS - Grid - intristic content with overflow:auto overlaps in grid
Diffstat (limited to 'layout/generic/ReflowInput.h')
-rw-r--r-- | layout/generic/ReflowInput.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/layout/generic/ReflowInput.h b/layout/generic/ReflowInput.h index e42508646..09c980b72 100644 --- a/layout/generic/ReflowInput.h +++ b/layout/generic/ReflowInput.h @@ -220,6 +220,7 @@ public: uint32_t mStaticPosIsCBOrigin:1; // the STATIC_POS_IS_CB_ORIGIN ctor flag uint32_t mIClampMarginBoxMinSize:1; // the I_CLAMP_MARGIN_BOX_MIN_SIZE ctor flag uint32_t mBClampMarginBoxMinSize:1; // the B_CLAMP_MARGIN_BOX_MIN_SIZE ctor flag + uint32_t mApplyAutoMinSize : 1; // the I_APPLY_AUTO_MIN_SIZE ctor flag // If set, the following two flags indicate that: // (1) this frame is absolutely-positioned (or fixed-positioned). @@ -738,6 +739,9 @@ public: // Pass ComputeSizeFlags::eBClampMarginBoxMinSize to ComputeSize(). B_CLAMP_MARGIN_BOX_MIN_SIZE = (1<<6), + + // Pass ComputeSizeFlags::eIApplyAutoMinSize to ComputeSize(). + I_APPLY_AUTO_MIN_SIZE = (1<<7), }; // This method initializes various data members. It is automatically |