white-space-pre-wrap-trailing-spaces-011.html (1574B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <title>CSS Text test: hanging trailing spaces with white-space:pre-wrap</title> 4 <link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com"> 5 <link rel="help" title="3. White Space and Wrapping: the white-space property" href="https://drafts.csswg.org/css-text-3/#white-space-property"> 6 <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-white-space-pre-wrap"> 7 <link rel="help" title="4.1.3. Phase II: Trimming and Positioning" href="https://drafts.csswg.org/css-text-3/#white-space-phase-2"> 8 <link rel="help" title="5.2. Breaking Rules for Letters: the word-break property" href="https://drafts.csswg.org/css-text-3/#word-break-property"> 9 <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-word-break-break-all"> 10 <link rel="match" href="reference/white-space-pre-wrap-trailing-spaces-alt-004-ref.html"> 11 <meta name="assert" content="Preserved white space at the end of a soft-wrapped line is hanged when white-space is pre-wrap."> 12 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> 13 <style> 14 div { 15 font: 10px/1 Ahem; 16 } 17 .ref { 18 position: absolute; 19 color: red; 20 z-index: -1; 21 } 22 .ref span { color: green; } 23 .test { 24 color: green; 25 26 width: 5ch; 27 white-space: pre-wrap; 28 word-break: break-all; 29 } 30 </style> 31 32 <p>This test passes if there is a green square and no red. 33 <div class="ref">XX<span>XXX</span><br>X<span>XX</span>X<span>X</span><br><span>XXXXX</span><br><span>XXXXX</span><br><span>XXXXX</span></div> 34 <div class="test">XX<span> </span><span>X X </span></div>