Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/text-group-align/text-group-align-start.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>text-group-align: start</title>
<link rel="match" href="text-group-align-start-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: "start", direction, textAlign });
}
document.body.append(document.createElement("br"));
}
</script>
</body>