https://github.com/web-platform-tests/wpt
Raw File
Tip revision: cd5bb894656e15405f1ab638cda9b24608e19f86 authored by Geoffrey Sneddon on 30 April 2018, 13:10:40 UTC
fixup! Fix #2669: Add alternate_hosts
Tip revision: cd5bb89
justify-content_space-between.html
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Flexible Box Test: justify-content_space-between</title>
    <link rel="author" title="Intel" href="http://www.intel.com" />
    <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#justify-content-property" />
    <meta name="flags" content="" />
    <meta name="assert" content="Check if the web engine can indentify the justify-content value space-between." />
    <style>
      #test01, #test02, #test03{
        text-align:center;
        font-size: 20px;
        width: 30px;
      }
      #test01{
        background: #7FFF00;
      }
      #test02{
        background: #00FFFF;
      }
      #test03{
        background: #4169E1;
      }
      #test{
        background: #ff0000;
        height: 200px;
        width: 200px;
        display: flex;
        justify-content: space-between;
      }
    </style>
  </head>
  <body>
    <p>Test passes if:<br>
    1. the rectangle 1, 2, 3 show up in a row in a red rectangle.<br>
    2. No gap between the left edge of red rectangle and the left of rectangle 1, no gap between the right edge of red rectangle and the right of rectangle 3 too, and rectangle 2 is distributed so that the empty space between rectangle 1 and rectangle 3 is the same.<br>
    3. the height of the 1, 2, 3 is the same as the height of the red rectangle.</p>
    <div id=test><div id=test01>1</div><div id=test02>2</div><div id=test03>3</div></div>
  </body>
</html>
back to top