trailing-ideographic-space-025.html (1379B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Text level 3 Test: handling trailing ideographic space sequence</title> 4 <link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com"> 5 <link rel="help" title="4.1.3. Phase II: Trimming and Positioning" href="https://drafts.csswg.org/css-text-3/#white-space-phase-2"> 6 <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-white-space-normal"> 7 <link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#valdef-unicode-bidi-plaintext"> 8 <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-hyphens-auto"> 9 <link rel="match" href="reference/white-space-break-spaces-005-ref.html"> 10 <meta name="assert" content="Auto hypenation and unicode-bidi 'plaintext' should not affect, hence the trailing ideographic spaces must hang; however, the rest of the sequence is wrapped due to the forced break."> 11 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> 12 <style> 13 div { 14 font: 50px/1 Ahem; 15 width: 1ch; 16 } 17 span { 18 background: green; 19 color: transparent; 20 21 unicode-bidi: plaintext; 22 hyphens: auto; 23 } 24 .ref { 25 position: absolute; 26 color: red; 27 z-index: -1; 28 } 29 </style> 30 31 <p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p> 32 <div class="ref">XX<br>XX</div> 33 <div><span>X <br>X </span></div>