text-overflow-002-ref.html (564B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Basic User Interface Reference File</title> 4 <link rel="author" title="Intel" href="http://www.intel.com/"> 5 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 6 <style> 7 div { 8 font-size: 10px; 9 } 10 span { 11 font-family: Ahem; 12 font-size: 30px; 13 } 14 </style> 15 <body> 16 <p>PREREQUISITE: The font used must have a glyph for the U+2026 character.</p> 17 <p>Test passes if there is an <strong>ellipsis</strong> after a black rectangle below.</p> 18 <div> 19 <span>Test</span>… 20 </div> 21 </body>