File: justify-content_space-between-001.htm

package info (click to toggle)
litehtml 0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,928 kB
  • sloc: ansic: 31,385; cpp: 27,328; makefile: 9
file content (44 lines) | stat: -rw-r--r-- 1,844 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<!-- Mirrored from test.csswg.org/suites/css-flexbox-1_dev/nightly-unstable/html/justify-content_space-between-001.htm by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 23 Dec 2023 16:15:11 GMT -->
<head>
    <title>CSS Flexible Box Test: justify-content_space-between</title>
    <link href="http://www.intel.com/" rel="author" title="Intel">
    <link href="http://www.w3.org/TR/css-flexbox-1/#justify-content-property" rel="help">
    <meta content="" name="flags">
    <meta content="Check if the web engine can indentify the justify-content value space-between." name="assert">
    <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>
<!-- Mirrored from test.csswg.org/suites/css-flexbox-1_dev/nightly-unstable/html/justify-content_space-between-001.htm by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 23 Dec 2023 16:15:11 GMT -->
</html>