diff options
Diffstat (limited to 'tests/suite/layout/container.typ')
| -rw-r--r-- | tests/suite/layout/container.typ | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/suite/layout/container.typ b/tests/suite/layout/container.typ index 799300f0..9948a00e 100644 --- a/tests/suite/layout/container.typ +++ b/tests/suite/layout/container.typ @@ -279,3 +279,28 @@ First! // Test box in 100% width block. #block(width: 100%, fill: red, box("a box")) #block(width: 100%, fill: red, [#box("a box") #box()]) + +--- issue-5296-block-sticky-in-block-at-top --- +#set page(height: 3cm) +#v(1.6cm) +#block(height: 2cm, breakable: true)[ + #block(sticky: true)[*A*] + + b +] + +--- issue-5296-block-sticky-spaced-from-top-of-page --- +#set page(height: 3cm) +#v(2cm) + +#block(sticky: true)[*A*] + +b + +--- issue-5296-block-sticky-weakly-spaced-from-top-of-page --- +#set page(height: 3cm) +#v(2cm, weak: true) + +#block(sticky: true)[*A*] + +b |
