summaryrefslogtreecommitdiffstats
path: root/layout/reftests/text/hyphenation-control-1-ref.html
blob: 5b26063a8b4cd959bd2229494f86e1b58de71d46 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<style>
code {
  display: block;
  hyphens: manual;
  border: 1px solid black;
  /* Prefer Courier New if available, as otherwise Menlo may be used,
     and its HYPHEN and HYPHEN-MINUS glyphs don't match. */
  font-family: Courier New, Courier, monospace;
}
</style>
</head>
<body lang="en-us">
<!--
  Hyphenation opportunities of the texts in this test are as follows,

        frag[A]ilis[A]tic[C]ex[A]pi[A]ali

  where [A] is an automatic hyphen, and [C] is a conditional hyphen.

  In this test, we set width to somewhere between every pair of adjacent hyphenations,
  then we see if lines break correctly.
-->
<code style="width:4ch;">
frag-<br />ilis-<br />tic-<br />ex-<br />pi-<br />ali
</code>
<br />
<code style="width:5ch;">
frag-<br />ilis-<br />tic-<br />expi-<br />ali
</code>
<br />
<code style="width:9ch;">
fragilis-<br />tic-<br />expiali
</code>
<br />
<code style="width:12ch;">
fragilistic-<br />expiali
</code>
<br />
<code style="width:14ch;">
fragilistic-<br />expiali
</code>
<br />
<code style="width:16ch;">
fragilistic-<br />expiali
</code>
</body>
</html>