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/nsIFrame.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/nsIFrame.h')
-rw-r--r-- | layout/generic/nsIFrame.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/layout/generic/nsIFrame.h b/layout/generic/nsIFrame.h index 50eb958e0..2acafa882 100644 --- a/layout/generic/nsIFrame.h +++ b/layout/generic/nsIFrame.h @@ -2105,6 +2105,14 @@ public: */ eIClampMarginBoxMinSize = 1 << 2, // clamp in our inline axis eBClampMarginBoxMinSize = 1 << 3, // clamp in our block axis + /** + * The frame is stretching (per CSS Box Alignment) and doesn't have an + * Automatic Minimum Size in the indicated axis. + * (may be used for both flex/grid items, but currently only used for Grid) + * https://drafts.csswg.org/css-grid/#min-size-auto + * https://drafts.csswg.org/css-align-3/#valdef-justify-self-stretch + */ + eIApplyAutoMinSize = 1 << 4, // only has an effect when eShrinkWrap is false }; /** |