tor-browser

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

424236-10.html (396B)


      1 <!DOCTYPE HTML> <!-- standards mode only! -->
      2 <html>
      3 <head>
      4 <title>Testcase, overflow on empty spans</title>
      5 <style type="text/css">
      6 
      7 html, body { margin: 0; padding: 0.25em; }
      8 div { background:aqua; }
      9 div > span { outline: 1px dotted black; }
     10 div > span > span { display:block; margin: 0 1em; }
     11 
     12 </style>
     13 </head>
     14 <body>
     15  <div>
     16    <span>
     17      <span>text</span></span>
     18  </div>
     19 </body>
     20 </html>