summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text/text-group-align/text-group-align-left-vlr-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-text/text-group-align/text-group-align-left-vlr-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-text/text-group-align/text-group-align-left-vlr-ref.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text/text-group-align/text-group-align-left-vlr-ref.html b/testing/web-platform/tests/css/css-text/text-group-align/text-group-align-left-vlr-ref.html
new file mode 100644
index 0000000000..a7df839259
--- /dev/null
+++ b/testing/web-platform/tests/css/css-text/text-group-align/text-group-align-left-vlr-ref.html
@@ -0,0 +1,15 @@
+<!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>