blob: c96a1e3e7b898d3624ea551d6ddefd8afbdd5612 (
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
|
<!DOCTYPE html>
<html>
<head>
<style>
code {
display: block;
hyphens: auto;
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">
<!--
Test checks that automatic hyphenation opportunities should honor
manual hyphenation opportunities even if they are within an extreme long word.
-->
<code style="width:100ch;">
abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzsuper­cali­fragi­listic­expiali­docious­abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz
</code>
</body>
</html>
|