File: flexbox-table-fixup-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 (64 lines) | stat: -rw-r--r-- 2,456 bytes parent folder | download | duplicates (8)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
--><!--
     Testcase with table parts inside of a flex container, which should *not*
     trigger table-fixup.  We use justify-content:space-between to stick packing
     space between flex items, so that we can verify that e.g. a contiguous
     run of <td>s will each be blockified & form its own flex item (instead of
     being aggregated into a single table & single flex item).
--><html>
  
<!-- Mirrored from test.csswg.org/suites/css-flexbox-1_dev/nightly-unstable/html/flexbox-table-fixup-001.htm by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 23 Dec 2023 16:15:11 GMT -->
<head>
    <title>CSS Test: Testing that table cells in a flex container get blockified and each form their own flex item</title>
    <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
    <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-items">
    <link rel="match" href="http://test.csswg.org/suites/css-flexbox-1_dev/nightly-unstable/html/reference/flexbox-table-fixup-001-ref.htm">
    <style>
      div.flexbox {
        border: 1px dashed blue;
        width: 200px;
        display: flex;
        justify-content: space-around;
      }

      td {
        /* Remove any default padding for td elements, so we can compare them
           easily against blocks in the reference case. */
        padding: 0px;
      }

      .a {
        background: lightgreen;
        width: 48px;
      }

      .b {
        background: yellow;
        width: 48px;
      }

      .c {
        background: pink;
        width: 48px;
      }
    </style>
  </head>
  <body>
    <!-- The adjacent table-parts in each example below should *not* be
         grouped into the same flex item. -->
    <!-- 2 adjacent table cells -->
    <div class="flexbox"><td class="a">cell1</td><td class="b">cell2</td></div>

    <!-- Table cell followed by tbody -->
    <div class="flexbox"><td class="a">cell1</td><tbody class="b">t</tbody></div>

    <!-- Empty table cell (ends up occupying 2px of width), followed by
         nonempty table cell.-->
    <div class="flexbox"><td></td><td class="b">cell1</td></div>
  </body>

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