tor-browser

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

word-break-manual-001.html (819B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Text level 4 Test: word-break:manual </title>
      4 <link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
      5 <link rel="help" href="https://drafts.csswg.org/css-text-4/#word-boundary-detection">
      6 <link rel="match" href="reference/word-break-manual-001-ref.html">
      7 <meta name="assert" content="word-break: manual turns off detection of word boundaries in south east asian scripts">
      8 <style>
      9 #wrap, #ref {
     10  font-size: 2em;
     11  border: solid blue;
     12  margin: 5px;
     13  width: 30ch;
     14 }
     15 #test {
     16  width: 0;
     17  word-break: manual;
     18 }
     19 </style>
     20 
     21 <p>Test passes if the two boxes below are identical.
     22 
     23 <div id=wrap lang=th>
     24  <div id=test>กรุงเทพคือสวยงาม</div>
     25 </div>
     26 <div id=ref lang=th>กรุงเทพคือสวยงาม</div>