tor-browser

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

1059498-2.html (775B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <meta charset="utf-8">
      4 <title>Test for bug 1059498 - Paint parts of the filter that are caused by parts of the source that are invisible</title>
      5 
      6 <style>
      7 
      8 body {
      9  margin: 0;
     10 }
     11 
     12 #filtered {
     13  margin-top: -110px;
     14  margin-left: -10px;
     15  width: 100px;
     16  height: 100px;
     17  background-color: white;
     18  filter: url(#filter);
     19 }
     20 
     21 #transformed {
     22  transform: translateX(10px);
     23  width: 200px;
     24 }
     25 
     26 </style>
     27 
     28 <div id="transformed">
     29  <div id="filtered"></div>
     30 </div>
     31 
     32 <svg height="0">
     33  <defs>
     34    <filter id="filter" filterUnits="objectBoundingBox"
     35            x="0%" y="0%" width="100%" height="200%"
     36            color-interpolation-filters="sRGB">
     37      <feDropShadow stdDeviation="0" dx="0" dy="40" flood-color="lime"/>
     38    </filter>
     39  </defs>
     40 </svg>