tor-browser

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

pattern-css-transform-ref.html (339B)


      1 <svg width="200" height="200">
      2  <defs>
      3    <pattern id="Pattern" x="0" y="0" width=".25" height=".25">
      4      <rect x="0" y="0" width="30" height="30" fill="skyblue"/>
      5      <rect x="40" y="40" width="10" height="10" fill="skyblue" />
      6    </pattern>
      7  </defs>
      8 
      9  <rect fill="url(#Pattern)" stroke="black" width="200" height="200"/>
     10 </svg>