blob: 73394479247fc3491ba37e50ec85b8dd00f8eadc (
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 Test reference</title>
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
<style>
div {
border: solid orange;
margin: 5px;
width: 6ch;
hyphens: manual;
}
</style>
<p>Test passes if the text in all orange boxes below is identical (including the presence and position of a hyphen).
<div>high­way</div>
<div>high­way</div>
<div>high­way</div>
<div>high­way</div>
<div>high­way</div>
<div>high­way</div>
<div>high­way</div>
|