1
0
Fork 0
firefox/testing/web-platform/tests/css/css-text/text-group-align/text-group-align-left-vlr-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

15 lines
551 B
HTML

<!DOCTYPE html>
<title>Reference: text-group-align: left</title>
<link rel="stylesheet" href="support/test-helpers.css">
<link rel="stylesheet" href="support/fake-group-align.css">
<body>
<script src="support/test-helpers.js"></script>
<script>
for (let direction of ["ltr", "rtl"]) {
for (let textAlign of ["start", "end", "left", "right", "center"]) {
generateSimpleReference({ textGroupAlign: "left", writingMode: "vertical-lr", direction, textAlign });
}
document.body.append(document.createElement("br"));
}
</script>
</body>