tor-browser

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

1012640-1-ref.html (611B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>white-space: nowrap; regressed in Firefox 29</title>
      6 <style>
      7 .tagcloud { width: 30em; padding: 1px; font-family: monospace; border: 1px solid blue; }
      8 .tagcloud > li { display: inline; white-space: nowrap; }
      9 .tagcloud > li.weight_1 { font-style: italic; }
     10 .tagcloud > li.weight_5 { font-size: 150%; }
     11 </style>
     12 </head>
     13 <body>
     14 <ul class="tagcloud">
     15 <li class="weight_1">short string</li>
     16 <li class="weight_1">short string</li>
     17 <li class="weight_1">short string</li>
     18 <li class="weight_5">why doesn't this move to the next line?</li>
     19 </ul>
     20 </body>
     21 </html>