tor-browser

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

flex-flow-001-ref.html (493B)


      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    float: left;
      9    height: 50px;
     10    width: 25px;
     11  }
     12 </style>
     13 <body>
     14  <p>Test passes if there is a filled green rectangle whose width is greater than height
     15  and the number within rectangle is '1 2 3 4' from left to right.</p>
     16  <div>1</div>
     17  <div>2</div>
     18  <div>3</div>
     19  <div>4</div>
     20 </body>