tor-browser

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

overflow-not-scrollable-1.html (456B)


      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-1-ref.html">
      4 <link rel="match" href="overflow-not-scrollable-1-ref2.html">
      5 <style>
      6 div {
      7  height: 200px; width: 200px; overflow: auto;
      8  text-shadow: 210px 210px 2px gray;
      9  font-size: 50px;
     10 }
     11 
     12 /* work around potential font overflow */
     13 span { margin-left: 5px }
     14 </style>
     15 <div>
     16 <span>text</span>
     17 </div>