summaryrefslogtreecommitdiff
path: root/tests/suite/visualize
diff options
context:
space:
mode:
Diffstat (limited to 'tests/suite/visualize')
-rw-r--r--tests/suite/visualize/path.typ13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/suite/visualize/path.typ b/tests/suite/visualize/path.typ
index 10955f14..bdd3dc72 100644
--- a/tests/suite/visualize/path.typ
+++ b/tests/suite/visualize/path.typ
@@ -50,3 +50,16 @@
--- path-bad-point-array ---
// Error: 7-31 point array must contain exactly two entries
#path(((0%, 0%), (0%, 0%, 0%)))
+
+--- issue-path-in-sized-container ---
+// Paths used to implement `LayoutMultiple` rather than `LayoutSingle` without
+// fulfilling the necessary contract of respecting region expansion.
+#block(
+ fill: aqua,
+ width: 20pt,
+ height: 15pt,
+ path(
+ (0pt, 0pt),
+ (10pt, 10pt),
+ ),
+)