hyphenation-control-3.html (781B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 code { 6 display: block; 7 hyphens: auto; 8 border: 1px solid black; 9 /* Prefer Courier New if available, as otherwise Menlo may be used, 10 and its HYPHEN and HYPHEN-MINUS glyphs don't match. */ 11 font-family: Courier New, Courier, monospace; 12 } 13 </style> 14 </head> 15 <body lang="en-us"> 16 <!-- 17 Test checks that automatic hyphenation opportunities should honor 18 manual hyphenation opportunities even if they are within an extreme long word. 19 --> 20 <code style="width:100ch;"> 21 abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzsuper­cali­fragi­listic­expiali­docious­abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz 22 </code> 23 </body> 24 </html>