mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
17 lines
665 B
HTML
17 lines
665 B
HTML
<!DOCTYPE html>
|
|
<title>text-group-align: start</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-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>
|