tor-browser

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

white-space-intrinsic-size-023.html (688B)


      1 <!DOCTYPE html>
      2 <meta charset="UTF-8">
      3 <title>CSS Text Test: intrinsic sizing and 'white-space: normal' with Chinese characters</title>
      4 <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
      5 <link rel="help" href="https://drafts.csswg.org/css-text-3/#line-breaking">
      6 <link rel="match" href="reference/white-space-intrinsic-size-022-ref.html">
      7 <meta name="assert" content="
      8  The max-content size puts all ideographs on the same line.
      9  The min-content size puts every ideograph on a different line.
     10 ">
     11 
     12 <div style="width: max-content; border: solid">
     13  中文<span>中文</span>
     14 </div>
     15 <div style="width: min-content; border: solid">
     16  中文<span>中文</span>
     17 </div>