may_progress tests

This commit is contained in:
PgBiel 2025-05-16 02:02:56 -03:00
parent 3cbbcaa734
commit 7ab1d25c69
4 changed files with 35 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 398 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 576 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

View File

@ -158,6 +158,41 @@
[b]
)
--- grid-header-too-large-repeating-orphan ---
#set page(height: 8em)
#grid(
grid.header(
[a\ ] * 5,
repeat: true,
),
[b]
)
--- grid-header-too-large-repeating-orphan-with-footer ---
#set page(height: 8em)
#grid(
grid.header(
[a\ ] * 5,
repeat: true,
),
[b],
grid.footer(
[c],
repeat: true,
)
)
--- grid-header-too-large-repeating-orphan-not-at-first-row ---
#set page(height: 8em)
#grid(
[b],
grid.header(
[a\ ] * 5,
repeat: true,
),
[c],
)
--- table-header-in-grid ---
// Error: 2:3-2:20 cannot use `table.header` as a grid header
// Hint: 2:3-2:20 use `grid.header` instead