tor-browser

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

line-breaking-font-size-zero-001.html (752B)


      1 <!DOCTYPE html>
      2 <title>CSS Test: Check line breaks when break opportunities have font-size: 0</title>
      3 <link rel="match" href="line-breaking-font-size-zero-001-ref.html">
      4 <link rel="help" href="https://drafts.csswg.org/css2/text.html#propdef-white-space" />
      5 <link rel="author" href="mailto:kojii@chromium.org">
      6 <style>
      7 div {
      8  width: 100px;
      9  background: blue;
     10 }
     11 
     12 inline-block {
     13  display: inline-block;
     14  width: 80px;
     15  height: 1em;
     16  background: orange;
     17 }
     18 
     19 sep {
     20  font-size: 0;
     21 }
     22 </style>
     23 </head>
     24 <body>
     25  <div>
     26    <inline-block></inline-block><sep> </sep>
     27    <inline-block></inline-block><sep>, </sep>
     28    <inline-block></inline-block><sep>) (</sep>
     29    <inline-block></inline-block><sep>a</sep>
     30    <inline-block></inline-block>
     31  </div>
     32 </body>