tor-browser

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

perspective-scrolling-1.html (564B)


      1 <!DOCTYPE html>
      2 <html lang="en" reftest-async-scroll>
      3 <meta charset="utf-8">
      4 <title>Perspective scrolling</title>
      5 
      6 <style>
      7 
      8 html {
      9  height: 100%;
     10  overflow: hidden;
     11 }
     12 
     13 body {
     14  height: 100%;
     15  perspective: 1px;
     16  overflow: auto;
     17  margin: 0;
     18 }
     19 
     20 div {
     21  transform-style: preserve-3d;
     22  height: 4000px;
     23  margin: 200px 100px;
     24  border: 10px solid black;
     25 }
     26 
     27 </style>
     28 
     29 <body reftest-displayport-x="0" reftest-displayport-y="0"
     30      reftest-displayport-w="800" reftest-displayport-h="2000"
     31      reftest-async-scroll-x="0" reftest-async-scroll-y="100">
     32 
     33 <div></div>