white-space-pre-wrap-trailing-spaces-006.html (1450B)
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.5. Overflow Wrapping: the overflow-wrap/word-wrap property" href="https://drafts.csswg.org/css-text-3/#overflow-wrap-property"> 9 <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-overflow-wrap-break-word"> 10 <link rel="match" href="reference/white-space-pre-wrap-trailing-spaces-004-ref.html"> 11 <link rel="match" href="reference/white-space-pre-wrap-trailing-spaces-alt-004-ref.html"> 12 <meta name="assert" content="Preserved white space at the end of a soft-wrapped line is hanged when white-space is pre-wrap."> 13 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> 14 <style> 15 div { 16 font: 25px/1 Ahem; 17 color: green; 18 background: red; 19 20 width: 2ch; 21 white-space: pre-wrap; 22 overflow-wrap: break-word; 23 } 24 span { 25 background: blue; 26 } 27 </style> 28 29 <p>This test passes if there is a green square and no red. 30 <div>XX<span> </span>XX</div>