summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text/white-space/white-space-pre-wrap-justify-003.html
blob: a00f9c381860a09e4a1ebcac90e38b3340a03e03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!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-003-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<br>&nbsp; &nbsp;four&nbsp; five&nbsp; six seven &nbsp; eight &nbsp; nine ten</div>