summaryrefslogtreecommitdiff
path: root/tests/typ/layout/align.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/layout/align.typ')
-rw-r--r--tests/typ/layout/align.typ52
1 files changed, 0 insertions, 52 deletions
diff --git a/tests/typ/layout/align.typ b/tests/typ/layout/align.typ
deleted file mode 100644
index 98ee8da5..00000000
--- a/tests/typ/layout/align.typ
+++ /dev/null
@@ -1,52 +0,0 @@
-// Test alignment.
-
----
-#set page(height: 100pt)
-#stack(dir: ltr,
- align(left, square(size: 15pt, fill: eastern)),
- align(center, square(size: 20pt, fill: eastern)),
- align(right, square(size: 15pt, fill: eastern)),
-)
-#align(center + horizon, rect(fill: eastern, height: 10pt))
-#align(bottom, stack(
- align(center, rect(fill: conifer, height: 10pt)),
- rect(fill: forest, height: 10pt, width: 100%),
-))
-
----
-// Test that multiple paragraphs in subflow also respect alignment.
-#align(center)[
- Lorem Ipsum
-
- Dolor
-]
-
----
-// Test start and end alignment.
-#rotate(-30deg, origin: end + horizon)[Hello]
-
-#set text(lang: "de")
-#align(start)[Start]
-#align(end)[Ende]
-
-#set text(lang: "ar")
-#align(start)[يبدأ]
-#align(end)[نهاية]
-
----
-// Ref: false
-#test(type(center), alignment)
-#test(type(horizon), alignment)
-#test(type(center + horizon), alignment)
-
----
-// Error: 8-22 cannot add two horizontal alignments
-#align(center + right, [A])
-
----
-// Error: 8-20 cannot add two vertical alignments
-#align(top + bottom, [A])
-
----
-// Error: 8-30 cannot add a vertical and a 2D alignment
-#align(top + (bottom + right), [A])