tor-browser

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

partial-prerender-in-svg-3-ref.html (581B)


      1 <!DOCTYPE html>
      2 <html>
      3 <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
      4 <style>
      5 html {
      6  overflow: hidden;
      7 }
      8 body {
      9  margin: 0px;
     10  padding: 0px;
     11 }
     12 #target {
     13  transform: translateX(-325px);
     14 }
     15 </style>
     16 <svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"
     17     style="overflow: visible">
     18  <g id="target">
     19    <svg xmlns="http://www.w3.org/2000/svg" width="10000">
     20      <rect fill="green" x="0"    width="1125" height="400"></rect>
     21      <rect fill="red"   x="1125" width="800"  height="400"></rect>
     22    </svg>
     23  </g>
     24 </svg>
     25 </html>