tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

break-spaces-with-ideographic-space-007.html (1613B)


      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://www.w3.org/TR/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" href="https://drafts.csswg.org/css-text-3/#valdef-white-space-break-spaces">
      8 <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-word-break-break-all">
      9 <link rel="match" href="reference/white-space-break-spaces-005-ref.html">
     10 <meta name="flags" content="ahem">
     11 <meta name="assert" content="A single leading ideographic space should be used as breaking opportunity, honoring white-space: break-spaces, to avoid overflow; however, a single ideographic space at the end of the line cannot be wrapped, hence it overflows when breaking after it to move the rest of the text to the next line.">
     12 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     13 <style>
     14 div {
     15  font: 25px/1 Ahem;
     16 }
     17 .fail {
     18  position: absolute;
     19  color: red;
     20  z-index: -1;
     21 }
     22 span { color: green; }
     23 .test {
     24  color: green;
     25  width: 4ch;
     26 
     27  white-space: break-spaces;
     28 }
     29 </style>
     30 <body>
     31  <p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p>
     32  <div class="fail"><span>XXXX</span><br>XXXX<br>XXX<span>X</span><br><span>XXXX</span></div>
     33  <div class="test">&#x3000;XXXX&#x3000;XXX</div>
     34 </body>