summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-layout-api/box-tree-unregistered.https.html
blob: 25fe602d1c449ad1c983b049208a6a23dc746f41 (plain)
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
<!DOCTYPE html>
<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#layout-api-box-tree">
<link rel="match" href="box-tree-unregistered-ref.html">
<meta name="assert" content="This test checks that an unregistered layout() works the same as a normal flow-root." />
<style>
@supports (display: layout(unregistered)) {
  .test {
    display: layout(unregistered);
  }
}

.container {
  float: left;
  margin: 20px 0;
  border: solid 2px;
  width: 100px;
}

.float {
  float: left;
  width: 100%;
  height: 40px;
  background: hotpink;
}

.inflow {
  height: 40px;
  background: hotpink;
}
</style>

<div class="container">
  <!-- This tests that the "layout()" margins don't collapse with its children. -->
  <div class="test" style="margin: 20px 0">
    <div class="inflow" style="margin: 20px 0"></div>
  </div>
</div>

<div class="container">
  <!-- This tests that the "layout()" grows to fit child floats. -->
  <div class="test">
    <div class="float" style="margin: 40px 0"></div>
  </div>
</div>

<div class="container">
  <!-- This tests that a float does not intrude into "layout()" box. -->
  <div class="float"></div>
  <div class="test" style="width: 100%; height: 40px; background: green;"></div>
</div>

<div class="container">
  <!-- This tests that margins in two "layout()" box children collapse as normally. -->
  <div class="test" style="background: green;">
    <div style="margin:100px 0;">
      <div style="margin:100px 0;"></div>
    </div>
    <div style="margin:100px 0;">
      <div style="margin:100px 0;"></div>
    </div>
  </div>
</div>