| <!DOCTYPE html> |
| <meta charset="utf-8"> |
| <title>CSS Basic User Interface Test: text-overflow - string</title> |
| <link rel="author" title="Minseong Kim" href="mailto:jja08111@gmail.com"> |
| <link rel="help" href="https://drafts.csswg.org/css-overflow-4"> |
| <link rel="match" href="reference/text-overflow-string-011-ref.html"> |
| <meta name="assert" content="Test checks that a line feed in text-overflow string |
| is converted to a space when one side is English."> |
| <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> |
| <style> |
| div { |
| font-family: monospace; |
| font-size: 10px; |
| overflow: hidden; |
| text-overflow: "Hi\0Aワールド"; |
| /* 120px for four Ahem glyphs + (3ch + 4ic) for the ellipsis string |
| "Hi ワールド". */ |
| width: calc(120px + 3ch + 4.1ic); |
| } |
| span { |
| font-family: Ahem; |
| font-size: 30px; |
| } |
| </style> |
| <body> |
| <p>Test passes if there is an <strong>Hi ワールド</strong> after a black rectangle below.</p> |
| <div> |
| <span>TestChecksThatTheBrokenContentRepalcedByTextOverflow</span> |
| </div> |
| </body> |