1
0
Fork 0
firefox/testing/web-platform/tests/css/css-text/text-group-align/text-group-align-right-vlr.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

17 lines
697 B
HTML

<!DOCTYPE html>
<title>text-group-align: right</title>
<link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
<link rel="help" href="https://drafts.csswg.org/css-text-4/#text-group-align-property">
<link rel="match" href="text-group-align-right-vlr-ref.html">
<link rel="stylesheet" href="support/test-helpers.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"]) {
generateSimpleTest({ textGroupAlign: "right", writingMode: "vertical-lr", direction, textAlign });
}
document.body.append(document.createElement("br"));
}
</script>
</body>