mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 16:58:38 +09:00
CSS - Grid - intristic content with overflow:auto overlaps in grid
This commit is contained in:
parent
66276efa0a
commit
b9bbb5d201
18 changed files with 965 additions and 13 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue