blob: 82b10ac6a4a372a155364f1aabd8e5c3fdc60e5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!doctype html>
<meta charset=utf-8>
<title>CSS Text reference</title>
<style>
div {
border: 1px solid gray;
font: 22px monospace;
width: 22ch;
margin: 1em;
}
.ref {
white-space: normal;
text-align: justify;
}
</style>
<p>Test passes if the two blocks are rendered identically</p>
<div class=ref>one two three four five six seven eight nine ten</div>
<div class=ref>one two three four five six seven eight nine ten</div>
|