tor-browser

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

flex-direction-row-001-visual.html (863B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Flexible Box Test: flex-direction_row</title>
      5    <link rel="author" title="Intel" href="http://www.intel.com" />
      6    <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-direction-property" />
      7    <link rel="stylesheet" href="support/test-style.css">
      8    <meta name="assert" content="Check if the web engine can identify the flex-direction value row." />
      9    <style>
     10      #test{
     11 height: 200px;
     12        width: 200px;
     13        display: flex;
     14 flex-direction: row;
     15      }
     16    </style>
     17  </head>
     18  <body>
     19    <p>Test passes if:<br>
     20    1. the rectangle 1, 2, 3 show up in a row in a red rectangle and no gap between them.<br>
     21    2. the rectangle 1, 2, 3 appear in upper left of red rectangle.</p>
     22    <div id=test><div id=test01>1</div><div id=test02>2</div><div id=test03>3</div></div>
     23  </body>
     24 </html>