tor-browser

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

flex-flow-007-ref.html (442B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Flexbox Test Reference File</title>
      4 <link rel="author" title="Intel" href="http://www.intel.com">
      5 <style>
      6  div {
      7    background-color: green;
      8    height: 25px;
      9    width: 100px;
     10  }
     11 </style>
     12 <body>
     13  <p>Test passes if there is a filled green square and no red, the number within square is '1 2 3 4' from top to bottom.</p>
     14  <div>1</div>
     15  <div>2</div>
     16  <div>3</div>
     17  <div>4</div>
     18 </body>