tor-browser

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

partial-prerender-expansion-with-resolution-ref.html (637B)


      1 <!DOCTYPE html>
      2 <html reftest-resolution="0.5">
      3 <meta name="viewport" content="width=device-width,minimum-scale=0.5,initial-scale=1">
      4 <style>
      5 html {
      6  scrollbar-width: none;
      7 }
      8 body {
      9  margin: 0px;
     10  padding: 0px;
     11 }
     12 #target {
     13  width: 4000px;
     14  height: 4000px;
     15  position: absolute;
     16  transform: translateX(-400px);
     17 }
     18 </style>
     19 <div id="target">
     20  <svg xmlns="http://www.w3.org/4000/svg" viewBox="0 0 4000 4000">
     21    <rect fill="green" x="0"    width="1600" height="4000"></rect>
     22    <rect fill="blue"  x="1600" width="650"  height="4000"></rect>
     23    <rect fill="red"   x="2250" width="1750" height="4000"></rect>
     24  </svg>
     25 </div>
     26 </html>