tor-browser

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

1117304-2.html (645B)


      1 <!--
      2     Any copyright is dedicated to the Public Domain.
      3     http://creativecommons.org/publicdomain/zero/1.0/
      4 -->
      5 <!DOCTYPE html>
      6 <meta charset="utf-8">
      7 <title>Bug 1117304 - Different surface formats for different input tiles in feTile filter</title>
      8 
      9 <div style="filter:url(#feTileFilter); height:100px;"></div>
     10 
     11 <svg style="height:0">
     12  <defs>
     13    <filter id="feTileFilter" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"
     14            x="0" y="0" width="400" height="100">
     15      <feFlood x="10" width="10" flood-color="black"/>
     16      <feOffset x="10" width="300"/>
     17      <feTile width="300"/>
     18    </filter>
     19  </defs>
     20 </svg>