tor-browser

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

overflow-not-scrollable-2.html (417B)


      1 <!DOCTYPE HTML>
      2 <link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-shadow-property">
      3 <link rel="match" href="overflow-not-scrollable-2-ref.html">
      4 <style>
      5 div {
      6  height: 200px; width: 200px; overflow: auto;
      7  text-shadow: 100px 100px 30px black;
      8  font-size: 50px;
      9  font-weight: bold;
     10 }
     11 
     12 /* work around potential font overflow */
     13 span { margin-left: 5px }
     14 </style>
     15 <div>
     16 <span>text</span>
     17 </div>