tor-browser

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

rotate-180-degrees-001.html (725B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <title>CSS Test: Reference</title>
      5    <link rel="author" title="Larry McLister" href="mailto:lmcliste@adobe.com"/>
      6   <style type="text/css">
      7        #greenBottomDiv {
      8            position: absolute;
      9            background: green;
     10            border-left: transparent;
     11            border-bottom-color: transparent;
     12            border-right-color: transparent;
     13            border-top-color: black;
     14            border-width: 5px;
     15            border-style: solid;
     16            height: 100px;
     17            width: 100px;
     18         }
     19 
     20    </style>
     21 </head>
     22 <body>
     23    <p>Test passes if there is a black line on the top of green box and no red.</p>
     24    <div id="greenBottomDiv"></div>
     25 </body>
     26 </html>