break-spaces-before-first-ideographic-char-010.html (1829B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Text Test: white-space: break-spaces</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" title="5.2. Breaking Rules for Letters: the word-break property " href="https://drafts.csswg.org/css-text-3/#word-break-property"> 7 <link rel="help" title="5.3. Line Breaking Strictness: the line-break property" href="https://drafts.csswg.org/css-text-3/#propdef-line-break"> 8 <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-white-space-break-spaces"> 9 <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-line-break-anywhere"> 10 <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-word-break-break-all"> 11 <link rel="match" href="reference/white-space-break-spaces-005-ref.html"> 12 <meta name="flags" content="ahem"> 13 <meta name="assert" content="A breaking opportunity exists before the first character of a sequence of ideographic spaces to avoid the line overflow, honoring the 'line-break' property, ignoring previous breaking opportunities."> 14 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 15 <style> 16 div { 17 font: 25px/1 Ahem; 18 } 19 .fail { 20 position: absolute; 21 color: red; 22 z-index: -1; 23 } 24 span { color: green; } 25 .test { 26 color: green; 27 width: 4ch; 28 29 white-space: break-spaces; 30 line-break: anywhere; 31 word-break: break-all; 32 } 33 34 </style> 35 <body> 36 <p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p> 37 <div class="fail">X<span>X</span>XX<br><span>X</span>X<span>XX<br></span><span>XXXX<br></span><span>XXXX<br></span></div> 38 <div class="test">X XX X</div> 39 </body>