tor-browser

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

white-space-zero-fontsize-001.html (626B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <title>CSS Text Test: preserved white space with zero font-size</title>
      4 <link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
      5 <link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-property">
      6 <link rel="match" href="reference/white-space-zero-fontsize-001-ref.html">
      7 <meta name="assert" content="Forced line break in preserved white space is respected even when font-size is zero">
      8 <style>
      9 pre {
     10  font-size: 0;
     11  float: left;
     12  border: 1px solid black;
     13  margin: 12px;
     14 }
     15 span { font-size: 12px; }
     16 </style>
     17 <pre>
     18 <span>foo</span>
     19 <span>bar</span>
     20 </pre>