1
0
Fork 0
firefox/testing/web-platform/tests/css/css-text/white-space/white-space-pre-wrap-justify-002.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

29 lines
779 B
HTML

<!doctype html>
<meta charset=utf-8>
<title>CSS Text test: justification with white-space:pre-wrap</title>
<link rel="author" title="Jonathan Kew" href="jkew@mozilla.com">
<link rel="help" href="https://www.w3.org/TR/css-text-3/#text-align-property">
<link rel="match" href="reference/white-space-pre-wrap-justify-002-ref.html">
<style>
div {
border: 1px solid gray;
font: 22px monospace;
width: 22ch;
margin: 1em;
}
.test {
white-space: pre-wrap;
text-align: justify;
}
.ref {
white-space: normal;
text-align: justify;
}
</style>
<p>Test passes if the two blocks are rendered identically</p>
<div class=test>one two three four five six seven eight nine ten</div>
<div class=ref>one two&nbsp; three &nbsp; four five six seven eight nine &nbsp; ten</div>