tor-browser

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

overflow-clip.html (316B)


      1 <!DOCTYPE html>
      2 <!--
      3 checks that unblurred text-shadows are
      4 actually clipped by text-overflow: clip
      5 -->
      6 <html>
      7 <head></head>
      8 <body>
      9  <div style="
     10    width: 3em;
     11    text-overflow: clip;
     12    overflow: hidden;
     13    text-shadow: 3em 0px black;
     14    white-space: nowrap;
     15    color: red;">MMMMMM
     16  </div>
     17 </body>
     18 </html>