tor-browser

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

break-spaces-with-ideographic-space-002.html (1559B)


      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 Garcia-Boente" 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" 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-word">
      9 <meta name="flags" content="ahem">
     10 <link rel="match" href="reference/white-space-break-spaces-005-ref.html">
     11 <meta name="assert" content="break-word + break-spaces do not allow a break
     12 between the last character of a word and the first space of a sequence of ideographic spaces
     13 if there are other wrapping opportunities earlier in the line.">
     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  word-break: break-word;
     31 }
     32 </style>
     33 <body>
     34  <p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p>
     35  <div class="fail">XX<span>XX</span><br>X<span>X</span>X<span>X<br>XXXX<br>XXXX</span></div>
     36  <div class="test">XX&#x3000;X&#x3000;X</div>
     37 </body>