tor-browser

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

transforms-rotateY-degree-60-ref.html (695B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <title>CSS Transforms Reference File</title>
      5    <link rel="author" title="Ji Kai" href="mailto:7jikai@gmail.com">
      6    <link rel="reviewer" title="Dayang Shen" href="mailto:shendayang@baidu.com"> <!-- 2013-09-04 -->
      7    <style>
      8        div {
      9            background-color: green;
     10            position: absolute;
     11            top: 100px;
     12            width: 25px;
     13            height: 100px;
     14        }
     15 
     16        #left {
     17            left: 100px;
     18        }
     19 
     20        #right {
     21            left: 175px;
     22        }
     23    </style>
     24 </head>
     25 <body>
     26    <p>The test passes if there are two green rectangles.</p>
     27    <div id="left"></div>
     28    <div id="right"></div>
     29 </body>
     30 </html>