File: flexbox-flex-wrap-flexing.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 (40 lines) | stat: -rw-r--r-- 1,800 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
<!DOCTYPE html>
<html>
<!-- Mirrored from test.csswg.org/suites/css-flexbox-1_dev/nightly-unstable/html/flexbox-flex-wrap-flexing.htm by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 23 Dec 2023 16:15:11 GMT -->
<head>
    <title>CSS Flexbox Test: flex-wrap flexes widths after line breaking</title>
    <link href="mailto:stearns@adobe.com" rel="author" title="Alan Stearns">
    <link href="http://fantasai.inkedblade.net/contact" rel="reviewer" title="Elika J. Etemad">
    <link href="http://www.w3.org/TR/css-flexbox-1/#flex-lines" rel="help">
    <meta content="" name="flags">
    <link href="http://test.csswg.org/suites/css-flexbox-1_dev/nightly-unstable/html/reference/flexbox-flex-wrap-flexing-ref.htm" rel="match">
    <meta content="Flex items given more space after line breaking should flex wider" name="assert">
    <meta content="http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property" name="assert">
    <meta content="http://www.w3.org/TR/css-flexbox-1/#flex-property" name="assert">
    <style>
        .container {
            display: flex;
            width: 150px;
            height: 100px;
            flex-wrap: wrap;
            background: red;
        }
        .item {
            min-width: 100px;
            flex: 1;
            height: 50px;
            display: inline-block; /*to fail the test if display:flex fails*/;
            background: green;
        }
    </style>
</head>
<body>
    <p>Test passes if there is a green rectangle and no red.</p>
    <div class="container">
        <div class="item"></div>
        <div class="item"></div>
    </div>

</body>
<!-- Mirrored from test.csswg.org/suites/css-flexbox-1_dev/nightly-unstable/html/flexbox-flex-wrap-flexing.htm by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 23 Dec 2023 16:15:11 GMT -->
</html>