diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-text/text-group-align/text-group-align-left-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-text/text-group-align/text-group-align-left-ref.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text/text-group-align/text-group-align-left-ref.html b/testing/web-platform/tests/css/css-text/text-group-align/text-group-align-left-ref.html new file mode 100644 index 0000000000..f04180608a --- /dev/null +++ b/testing/web-platform/tests/css/css-text/text-group-align/text-group-align-left-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", direction, textAlign }); + } + document.body.append(document.createElement("br")); +} +</script> +</body> |