| <!DOCTYPE html> |
| <title>text-group-align: left</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-left-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: "left", direction, textAlign }); |
| } |
| document.body.append(document.createElement("br")); |
| } |
| </script> |
| </body> |